最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

twilio php 发送短信,php

IT圈 admin 38浏览 0评论

twilio php 发送短信,php

我正在尝试使用Twilio发送一些SMS消息,到目前为止,这很简单,但是我正在使用一些测试数据来捕获各种情况,并且我使用“ 1234567890”作为电话号码来捕获错误,但是导航到查询twilio api的页面时,出现以下错误:Fatal error: Uncaught exception 'Twilio\Exceptions\RestException'

with message '[HTTP 404] Unable to fetch record:

The requested resource /PhoneNumbers/1234567890 was not found'

这是我的代码:use Twilio\Rest\Client;

$client = new Client($sid, $token);

if($ph && preg_match('/^[0-9]{10}$/', $ph)) {

//this returns an array containing type, error_code, and a boolean

//value for is_valid.

$response = lookup($client, $ph);

if($response['is_valid']) {

//send the message via twilio.

$message = $client->messages->create(

$ph,

array(

'from' => 'my_twilio_number_goes_here',

'body' => 'text_body_goes_here'

)

);

//handle twilio response

$status = $message->status;

$sid = $message->sid;

}

我如何捕获该回复?

twilio php 发送短信,php

我正在尝试使用Twilio发送一些SMS消息,到目前为止,这很简单,但是我正在使用一些测试数据来捕获各种情况,并且我使用“ 1234567890”作为电话号码来捕获错误,但是导航到查询twilio api的页面时,出现以下错误:Fatal error: Uncaught exception 'Twilio\Exceptions\RestException'

with message '[HTTP 404] Unable to fetch record:

The requested resource /PhoneNumbers/1234567890 was not found'

这是我的代码:use Twilio\Rest\Client;

$client = new Client($sid, $token);

if($ph && preg_match('/^[0-9]{10}$/', $ph)) {

//this returns an array containing type, error_code, and a boolean

//value for is_valid.

$response = lookup($client, $ph);

if($response['is_valid']) {

//send the message via twilio.

$message = $client->messages->create(

$ph,

array(

'from' => 'my_twilio_number_goes_here',

'body' => 'text_body_goes_here'

)

);

//handle twilio response

$status = $message->status;

$sid = $message->sid;

}

我如何捕获该回复?

发布评论

评论列表 (0)

  1. 暂无评论