0

在我的应用程序中,我使用带有 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!");

    }


};


     };
4

1 回答 1

0

因此,您没有指定此片段来自哪个文件,但我感觉到,它来自server/rpc/<yourfilename>远程过程调用所在的位置。
!!!注意<yourfilename>

你定义的方法是为客户端生成的,他可以通过套接字接口触发它,让我写一个片段,我想你会明白:
- 让我们写入这个文件 =>client/code/app/app.js

ss.rpc('<yourfilename>.sendMessage','here comes params which is now a string');

要了解这个ss对象是什么client/code/app/entry.js,你会看到它。

于 2013-02-26T18:28:10.053 回答