我试图通过Twilio助手库获得所有会议的列表,但得到404错误。我的代码:
$client = new Client($accountSid, $authToken);
foreach ($client->conferences->read() as $conference) {
var_dump($conference);
}错误:
[HTTP 404] Unable to fetch page: The requested resource /2010-04-01/Accounts/twilio.account_sid/Conferences.json was not found谢谢你提前提供帮助!
发布于 2018-04-20 07:23:51
问题出在我树立的糟糕的资历上。我使用的测试凭据仅用于REST测试。当我从https://www.twilio.com/console设置正确的凭据时,问题就解决了。谢谢Shachaf.Gortler的帮助。
https://stackoverflow.com/questions/49924636
复制相似问题