Am trying to send push notifications to mobile devices using Twilio Notify with PHP, For this first creating a user using following code
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;
Getting an exception in
Fatal error: Uncaught exception 'Twilio\Exceptions\TwilioException' with message 'Unknown domain notify' in Twilio/Rest/Client.php
How to solve this? Googled a lot but no luck.