0
我正在爲我的一個客戶端的一個項目工作,他們會在收到新的即時聊天聊天時向他們發送文本(通過Twilio)。這個webhook(docs here)發送關於訪問者的信息以及他們對聊天前調查的迴應。我可以發送像「在您的網站上的新聊天」這樣的基本信息!但不包含任何可變數據。這裏是我的代碼的開始:如何接收Webhook並通過Twillio發送郵件及其數據
<?php
$data = file_get_contents('php://input');
$data = json_decode($data);
// this line loads the library
require './twilio/Services/Twilio.php';
$account_sid = $sid;
$auth_token = $token;
$client = new Services_Twilio($account_sid, $auth_token);
try {
$message = $client->account->messages->create(array(
"From" => "+12677932737",
"To" => "5555555555",
"Body" => $data,
));
} catch (Services_Twilio_RestException $e) {
$error = $e->getMessage();
}
?>
謝謝!