是否可以使用expressjs方法作为Restful客户端?

时间:2015-01-15 17:05:48

标签: node.js rest express httpclient

我想在服务器端发送请求以从restful api获取一些值。

是否可以做类似下面的事情:

app = require('express');

app.get("/profile-view", function(req,res){

  client = req.app;

  client.request.set('x-token','2344tgsdfsdf545hgh!'); // set header of restful request

  client.request.post('http://api.test.com/users', function(result){ //restfull post
      res.send(result);
  });

});

0 个答案:

没有答案