| curl_setopt_array($ch, [
|
| CURLOPT_RETURNTRANSFER => true,
|
| CURLOPT_POST => true,
|
| CURLOPT_HTTPHEADER => [
|
| "Content-Type: application/json", "Authorization: Bearer " . CHAT_KEY
|
| ],
|
| CURLOPT_POSTFIELDS => json_encode($payload, JSON_UNESCAPED_UNICODE),
|
| CURLOPT_TIMEOUT => 1000,
|
| CURLOPT_FAILONERROR => true
|
| ]);
|
|
|
| $response = curl_exec($ch);
|
| curl_close($ch);
|