这是我的代码
$client = new Twilio\Rest\Client($sid, $token);
$call = $client->calls->create(
"+9xxxxxxxxxx9",
array("url" => "http://demo.twilio.com/docs/voice.xml", "record"
=> true)
);
如何使用Twilio进行来电和外出通话? 在此先感谢:)
答案 0 :(得分:2)
您是否更新了composer.json
以包含Twilio库?
如果没有,请运行以下命令行:
composer require twilio/sdk
然后应该更新composer并下载SDK文件。看看这是否可以解决您的问题。
Or follow the setup instructions here
如果您已将twilio添加到composer.json
文件,请尝试运行:
composer update --no-scripts
然后
php artisan optimize