我正在尝试通过点击我的网页上的按钮发送短信。我有一个twilio试用帐户设置,我正在使用他们提供的php帮助程序库。
我的php看起来像这样,但凭借我的凭据。在调用create()的行上发生500错误。任何帮助将不胜感激。
我使用的是php 7和composer。
<?php
// Required if your environment does not handle autoloading
require_once 'vendor/autoload.php';
// Use the REST API Client to make requests to the Twilio REST API
use Twilio\Rest\Client;
try{
$sid = 'XX';
$token = 'YY';
$client = new Client($sid, $token);
// Use the client to do fun stuff like send text messages!
$sms = $client->messages->create('+15551234567', array('from' => '+15556361234','body' => 'Hey Jenny! Good luck on the bar exam!');
echo $sms;
}catch(Exception $e){
echo $e->getMessage();
}
?>
此外,我的ajax调用看起来像这样
$(document).on('click','#textmessage',function(e){
e.preventDefault()
data = {}
$.ajax({
url:'textmessage.php',
type:'GET',
data:data,
success:function(data){
console.log(data)
},
error: function (request, status, error) {
console.log(request)
}
});
});