通过 Twilio 发送短信 POST 错误

Sending SMS via Twilio POST error

这是我用头撞屏幕半天后得出的结果,如有任何帮助,我们将不胜感激。

我正尝试在点击事件时通过 Twillio 发送短信。我正在使用 Angular,在单击时调用 SendTestMessage 函数。不幸的是,我一直 运行 进入这个错误:

POST http://localhost:3000/sendsms 500 (Internal Server Error)

这是我的控制器:

  .controller('WhotoMessageCtrl', function($scope, UserService, $http, $q){
  console.log("whotomessage page");

  $scope.saveContactInfo = saveContactInfo;
  $scope.contact = {};
  $scope.sendTestMessage = sendTestMessage;

  function sendTestMessage(number){
    console.log('this fired', number);
    var defer = $q.defer();
    $http({
        url: '/sendsms',
        method: 'POST', 
        data: JSON.stringify({number}),
        contentType: 'application/json',
      }).success(function (number){
        console.log('text has been sent to', number);
        defer.resolve(user);
      });
      return defer.promise;
  };

这是我的服务器端代码:

app.all('*', function(req, res, next) {
    res.header("Access-Control-Allow-Origin", "*");
    res.header('Access-Control-Allow-Methods', 'OPTIONS,GET,POST,PUT,DELETE');
    res.header("Access-Control-Allow-Headers", "Content-Type, Authorization, X-Requested-With");
    if ('OPTIONS' == req.method){
        return res.send(200);
    }
    next();
});

app.use(function (req, res, next) {

var sendSMS = function(to){
  var outgoing = {};
  outgoing.to = to;
  outgoing.from = '19725593683';
  outgoing.body = 'Your table is ready';

  client.messages.create(outgoing, function(error, message){
    if (error){console.log(error.message)}
  })
};



app.post('/sendsms', function(req, res){
  sendResponse(res, req.body.phoneNo, 201)
  sendSMS(req.body.phoneNo)
  res.end();
});

有什么建议吗?

嘿,这里是 Twilio 开发人员布道师。

可能是您忘记复制部分代码,但似乎 client 尚未定义,这意味着您甚至没有向 Twilio 发出请求。

根据the documentation初始化client的正确方法是:

// Your accountSid and authToken from twilio.com/user/account
var accountSid = '{{ account_sid }}';
var authToken = "{{ auth_token }}";
var client = require('twilio')(accountSid, authToken);

只有这样你才能在你的代码上做:

var sendSMS = function(to){
  var outgoing = {};
  outgoing.to = to;
  outgoing.from = '19725593683';
  outgoing.body = 'Your table is ready';

  client.messages.create(outgoing, function(error, message){
    if (error){console.log(error.message)}
  })
};

希望对您有所帮助!