从美国号码发送 SMS 消息
这是使用 Twilio 的 Node.js SDK 从美国号码发送 SMS 文本消息的方法。
首先,你需要使用以下命令安装 Node.js 客户端:
npm install twilio
然后,你必须在其网站上创建一个帐户 。
拥有帐户后,你将需要可在在线信息中心找到的帐户 SID 和身份验证令牌。
https://i.stack.imgur.com/9rOMX.gif
在下面的代码示例中,将 [Account SID]
和 [Auth Token]
替换为你帐户中的 [Account SID]
和 [Auth Token]
。
// Twilio Credentials
var accountSid = '[Account SID]';
var authToken = '[Auth Token]';
//require the Twilio module and create a REST client
var client = require('twilio')(accountSid, authToken);
client.messages.create({
to: "+16518675309", // Any number Twilio can deliver to
from: "+14158141829", // A number you bought from Twilio and can use for outbound communication
body: "Hey Jenny, thanks for the pull request, will merge it right away."
}, function(err, message) {
console.log(message.sid);
});