在我的应用程序中使用node.js和socketstream framework.Now我需要使用tropo模块发送短信,接收短信,拨打电话和接听来电。我使用npm.i安装了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!");
}
};
};
答案 0 :(得分:0)
所以你没有指定这个片段来自哪个文件但是我感觉到,它来自server/rpc/<yourfilename>
下远程过程调用所在的文件。
!请注意<yourfilename>
您定义的方法是为客户端生成的,他可以通过套接字接口触发它,让我写一个片段,我想您会理解:
- 让我们写入这个文件=&gt; client/code/app/app.js
ss.rpc('<yourfilename>.sendMessage','here comes params which is now a string');
要了解这个ss
对象在client/code/app/entry.js
中看到的内容,您会看到它。