0
我在ubuntu 16.0上建立了一個nodejs應用程序。我使用npm安裝了它並配置了所有必需的依賴關係。現在一切正常。雲代碼功能正在工作並在數據庫中添加數據。 現在我的問題是,我正在使用twilio向用戶發送確認短信。以下是我的代碼:解析服務器Twilio未初始化
console.log("call 6");
var twilio = require("twilio")("A123456789123456789123456789123456", "a1234567891234567891234567891234");
console.log("call 7");
twilio.sendMessage({
From: "+1 123-456-7890",
To: request.params.number,
Body: "Enter 123 to verify your phone number..."
}, function (err, responseData) {
if (err) {
response.error("Error:" + err.message);
} else {
response.success("Success");
}
});
現在「呼叫6」將顯示在日誌中,但「召喚7」不顯示這個功能通過任何反應都沒有。我從iPhone調用它,並一直等待響應並拋出請求超時。