gpt4 book ai didi

Django | twilio 发送短信

转载 作者:行者123 更新时间:2023-12-01 09:09:26 24 4
gpt4 key购买 nike

我使用 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

这是什么意思?

谢谢。

最佳答案

some of the twilio examples从 python 库中,我注意到包含有效负载的字典是以 MixedCase 输入的,而您使用的是 UPPERCASE。

错误可能很直接,而不是

d = {
'TO' : '*** *** ****',
'FROM' : '415-555-1212',
'BODY' : 'Hello user, please verify your device using this code %s' % verNumber
}

试试

d = {
'To' : '*** *** ****',
'From' : '415-555-1212',
'Body' : 'Hello user, please verify your device using this code %s' % verNumber
}

SMS 快速入门(在文档中)支持这个想法。

希望这会有所帮助。

关于 Django | twilio 发送短信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2863201/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com