我有关于Twilio的试算表。当我发送短信时,它不支持回复,但我希望接收者也能回复。在Twilio控制台中,我可以看到它只支持从国内号码接收短信。如何才能从任何数字中接收到。这在试算表中是有可能的,对吧?或者我现在可以更改这个区域来测试其他数字的回复吗?我使用一个简单的节点js代码发送短信。
function sendSMS(from, to, body) {
client.messages.create(
{
to, // Recipient's number
messagingServiceSid: TWILIO_MESSAGING_S
我有一条短信:
different text asdasd anasdasdd different text asdsdas @"1 my text" different text different text asdsdas @"2 my text" text different text asdsdas @"3 my text" @"4 my text" asdasd anasdasdd different
我想过滤这段文字。除引号文本外,我想删除所有文本。我想得到这个结果,并在控制台中显示:
@"1 my text&
我在Node.js中发送短信的代码
var accountSid = ''; // Your Account SID from www.twilio.com/console
var authToken = ''; // Your Auth Token from www.twilio.com/console
// Load the twilio module
var twilio = require('twilio');
// Create a new REST API client to make authenticated reque