使用twilio api php发送传真

我正在使用Twilio API,并尝试使用可编程传真发送传真,但出现此错误。

  

[HTTP 403]无法创建记录:您帐户的国际权限不允许拨号到该国家/地区

下面是我发送传真的代码。

    $sid = config('services.twilio.sid');
    $token = config('services.twilio.token');

    $client = new Client($sid,$token);
    try {
        $fax = $client->fax->v1->faxes->create(
            "+92304xxxxxxx",// to
            "https://www.twilio.com/docs/documents/25/justthefaxmaam.pdf",// mediaUrl
            array("from" => config('services.twilio.phone_number') )
        );
    } 

有人请帮忙吗?

谢谢。

cuiyun0123 回答:使用twilio api php发送传真

这里是Twilio开发人员的传播者。

您是否已确定要在geographic permissions for voice calls上选择要发送传真的国家/地区?传真是通过语音通道而不是消息通道发送的,因此即使您可以将SMS消息发送到该国家/地区,也可能尚未获得语音/传真权限。

本文链接:https://www.f2er.com/3161633.html

大家都在问