账户配置
需要购买一个具有SMS功能的twilio电话号码用于发短信
需要在
develop/phone-numbers/regulatory-compliance/bundles
里面提供证明,然后审核,需要2个工作日设置允许给哪些区域的手机号发送
设置或取消入站短信、语音的webhook
路径:Develop->Phone Numbers->Active numbers->Voice/Messaging->A CALL/MESSAGE COMES IN
将Webhook 后面的 url 清空
刚购买的号码有个默认配置,当用户给twilio发短信或语音时,twilio 会回复(收费)。如果不用该功能就取消
日志中:direction 是 incoming 及 reply 的记录分别是用户回复及twilio回复的短信
默认 Messaging Webhook https://demo.twilio.com/welcome/sms/reply/
1
2
3<Response>
<Message>Thanks for the message. Configure your number's SMS URL to change this message.Reply HELP for help.Reply STOP to unsubscribe.Msg&Data rates may apply.</Message>
</Response>默认 Voice Webhook https://demo.twilio.com/welcome/voice/
1
2
3
4
5<Response>
<Say voice="alice">Thanks for the call. Configure your number's voice U R L to change this message.</Say>
<Pause length="1"/>
<Say voice="alice">Let us know if we can help you in any way during your development.</Say>
</Response>
开发
Node.js Quickstart
发送出站(outbound)短信
创建 twilio 客户端,需要 ACCOUNT_SID和AUTH_TOKEN
from
表示 twilio 用哪个号码发短信(测试号码或购买)格式为
[+][country code][phone number including area code]
to
表示twilio 给哪个号码发短信(顾客的手机号)
接收并回复入站(inbound)短信
twilio number 收到短信后,会向指定的URL发送一个请求(webhook)并期望获得一个XML格式的响应告诉twilio如何回复收到的短信
API
Message Resource
Create
发送短信
ERROR
https://www.twilio.com/docs/api/errors
logic
计算短信条数
1 | // https://www.twilio.com/docs/glossary/what-sms-character-limit#sms-message-length-and-character-encoding |
客户端配置
1 | const twilioSMSConfig = { |
FAQ
Too-Many-Requests
- 创建短信时可能发生 429 错误
1 | const ret = await this.client.messages.create({ |