Untitled

 avatar
unknown
plain_text
2 years ago
779 B
4
Indexable
$body = array(
  "api_key" => "Api Kodu buraya gelicek",
  "receiver" => "Telefon numarası örnek 90532 (ülke kodu ile başlıcak)",
  "data" => array("message" => "Mesaj İçeriği")
);

$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...