我使用 twilio 作为移动验证机制,我之前没有使用 twilio 的经验,但是查看了我在代码中使用的示例 PHP 代码,但显然它给了我一个400 Bad request
HTTP 错误。这是代码:
d = {
'TO' : '*** *** ****',
'FROM' : '415-555-1212',
'BODY' : 'Hello user, please verify your device using this code %s' % verNumber
}
try:
print account.request('/%s/Accounts/%s/SMS/Messages' % \
(API_VERSION, ACCOUNT_SID), 'POST', d)
except Exception, e:
return HttpResponse('Error %s' % e)
verNumber
是随机生成的,并且接收者的号码在 twilio 中验证。
我按照异常发现了这个错误
Error 400 The source 'From' phone number is required to send an SMS
这是什么意思。?
谢谢。