Twilio 免费帐户。这就是我发送消息的方式:
const args = {
from : TWILIO_PHONE_NUMBER,
to : '+15005550006', // magic test number
body : "test",
statusCallback: 'https://postb.in/1604476976671-5019259769469' //twilioCallback.getUrl()
}
message = await this.client.messages.create(args)
结果:postbin 从未收到请求。我自己的 twilio 回调 url 也没有。我是否需要订阅、创建消息服务、支付发件人电话号码并在 中使用该消息服务 ID args
?这使它起作用吗?