從美國號碼傳送 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);
});