流星Restivus不起作用

时间:2015-09-24 06:41:14

标签: javascript node.js meteor

我正在使用restivus lib,但它不起作用:

这是简单的代码:

//first function:
request({
            uri: "http://localhost/my-api/publisher/",
            method: "GET"
        }, function(error, response, body) {
            console.log("Risposta :"+response);
            console.log("Risposta :"+body);
        });

//second function:
 var server = http.createServer(function(request, response) {
            var Api = new Restivus({
                apiPath: 'my-api/',
                useDefaultAuth: false,
                prettyJson: true
  });

  Api.addRoute('publisher', {authRequired: true},  {
                get: function () {
                    console.log("publisher");
                    return "publisher";
                }

  });


});

server.listen(80, function() {
     console.log((new Date()) + ' Server attivo sulla porta 80');
});

日志不会发布任何错误或其他错误,只是不返回任何内容。

一些建议?

感谢。

0 个答案:

没有答案