在我的应用程序中,我使用带有 socketstream 框架的 node.js。现在我需要使用 tropo 模块来发送短信、接收短信、拨打电话和接听来电。我使用 npm 安装了 tropo-webapi。我添加了这个节点代码在服务器端。运行以下代码时,我没有得到任何输出。我不知道如何在 tropo 网站中链接此文件以及如何接收短信和电话。
exports.actions = function(req, res, ss) {
return{
sendMessage:function(){
var tropoAPI = require('tropo-webapi');
var tropo = new tropoAPI.TropoWebAPI();
tropo.call("+18197924547", null, null, null, null, null, "SMS", null, null,null);
tropo.say("HI How Are You!!");
},
makeCall:function(){
var tropoAPI = require('tropo-webapi');
var tropo = new tropoAPI.TropoWebAPI();
tropo.call("+18197924547");
tropo.say("Hi,how ary yoo!");
}
};
};