Fatal error: Uncaught exception 'Twilio\Exceptions\TwilioException' with message 'Unknown domain notify' in /twilio-php/Twilio/Rest/Client.php

Fatal error: Uncaught exception 'Twilio\Exceptions\TwilioException' with message 'Unknown domain notify' in /twilio-php/Twilio/Rest/Client.php

我正在尝试使用带有 PHP 的 Twilio Notify 向移动设备发送推送通知,为此首先使用以下代码创建用户

require_once 'vendor/autoload.php';
use Twilio\Rest\Client;

$accountSid = "sid";
$authToken = "your_auth_token";

$serviceSid = "serviceSid";

// Initialize the client
$client = new Client($accountSid, $authToken);
// Create a user
$user = $client
    ->notify->services($serviceSid)
    ->users->create([
        'identity' => 'push token', //am not sure what is identity also?
        'segment' => ['segmentName']
    ]);
// print_r($user);
echo $user->sid;

中出现异常
Fatal error: Uncaught exception 'Twilio\Exceptions\TwilioException' with message 'Unknown domain notify' in Twilio/Rest/Client.php

如何解决?用谷歌搜索了很多但没有运气。

我猜你使用的是代码中的 5.x 版本

所以使用此代码创建用户

$notification = $client
    ->notify->services($serviceSid)
    ->notifications->create([
        'identity' => '00000001',
        'body' => 'Hello Bob'
    ]);

echo $notification->sid;

此处为 Twilio 开发人员布道师。

您当前使用的是 Twilio PHP 5.11.0。 Twilio Notify 目前是测试版产品,因此未包含在主库中。

您将需要 install the alpha version of the library 包括测试版和预览版产品。您可以使用

使用 composer 安装它
composer require twilio/sdk:5.11.0-alpha1

至于身份,指的是User in Notify. To send notifications you need to create bindings的身份,这是您的用户接收通知的地址。然后,当您创建通知时,您需要提供要将通知发送到的用户的身份。