【发布时间】:2019-11-13 00:11:56
【问题描述】:
我尝试通过 Twilio 发送 Whatsapp 消息
const accountSid = 'AC4fcb197075xxxxxxxcccccccvvvvvvvvv';
const authToken = 'fedd7f35082ccccccccccc49cxxxxxxxxxxx';
const client = require('twilio')(accountSid, authToken);
client.messages.create({
body: 'This is the ship that made the Kessel Run in fourteenparsecs',
from: '+15yyy61xxx',
to: '+91mmm911kkk7'
}).then(message => console.log(message.sid));
消息 SID 记录到控制台,但在 Twilio 调试器中,发现以下错误代码
- 30004 - 消息被阻止
- 11200 HTTP 检索失败
【问题讨论】:
标签: twilio