Untitled
unknown
plain_text
2 years ago
768 B
15
Indexable
$body = array(
"api_key" => "##APİCODE##",
"receiver" => "Example of phone number with country code: 905318118008",
"data" => array("message" => "Message details add")
);
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://my.wpileti.com/api/send-message",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode($body),
CURLOPT_HTTPHEADER => [
"Accept: */*",
"Content-Type: application/json",
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}Editor is loading...