嗨,我正在尝试使用 Twilio api 发送短信,它适用于他们的网站,但不适用于我的本地服务器,这是我的代码。
<?php
// Get the PHP helper library from twilio.com/docs/php/install
require_once('Services/Twilio.php'); // Loads the library
// Your Account Sid and Auth Token from twilio.com/user/account
$sid = "I wrote my Sid(test sid also doesn't work)";
$token = "my token";
$client = new Services_Twilio($sid, $token);
$sms = $client->account->sms_messages->create("From","To","Jenny please?! I love you <3", array());
?>
当我运行此代码时,我得到:未捕获的异常 'Services_Twilio_TinyHttpException' 和消息 'Failed connect to api.twilio.com:443; 没有错误'在......