twilio找不到请求的资源

时间:2018-04-19 15:17:44

标签: twilio twilio-php

我试图通过Twilio PHP帮助程序库获取所有会议的列表,但得到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

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

问题在于我设置的凭据错误。我使用的测试凭据仅用于REST API测试目的。当我从https://www.twilio.com/console设置正确的凭据时,问题就解决了。感谢Shachaf.Gortler的帮助。