2

您可以使用我的测试凭据向一些测试号码发送短信。他们假装发送精美。但是,尝试使用同样由 Twilio 提供的查找 API,即使意图是检索有关测试号的信息,也会失败:

>>> from django.conf import settings
>>> from twilio.rest.lookups import TwilioLookupsClient
>>> account_sid = settings.TWILIO_ACCOUNT_SID
>>> auth_token = settings.TWILIO_AUTH_TOKEN
>>> client = TwilioLookupsClient(account_sid, auth_token)
>>> lookup_client.phone_numbers.get('+15005555009', include_carrier_info=True)
---------------------------------------------------------------------------
TwilioRestException                       Traceback (most recent call last)
<ipython-input-9-03718f1c0615> in <module>()
----> 1 client.phone_numbers.get('+15005555009', include_carrier_info=True)

...

TwilioRestException: 
HTTP Error Your request was:

GET https://lookups.twilio.com/v1/PhoneNumbers/+15005555009?Type=carrier

Twilio returned the following information:

Resource not accessible with Test Account Credentials

More information may be available here:

https://www.twilio.com/docs/errors/20008

+15005555009 是唯一列出的模拟固定电话的电话号码,无法返回短信。我期望 API 为此类号码的运营商类型返回“座机”。错误消息中的链接将我带到一个没有有效测试凭据的页面。

如何使用给定的测试凭据测试查找 API?

4

1 回答 1

4

我认为您不能将查找 API 与测试凭据一起使用。

来自https://www.twilio.com/docs/api/rest/test-credentials ...

“支持的资源

您的测试凭据当前可用于与以下三个资源进行交互:

  • 购买电话号码:POST /2010-04-01/Accounts/{TestAccountSid}/IncomingPhoneNumbers

  • 发送短信:POST /2010-04-01/Accounts/{TestAccountSid}/SMS/Messages

  • 拨打电话:POST /2010-04-01/Accounts/{TestAccountSid}/Calls

对具有测试凭据的任何其他资源的请求将收到 403 Forbidden 响应。将来,我们也可以启用这些资源进行测试。”

于 2016-07-06T23:26:44.923 回答