External API Calls With Express, Node.JS and Require Module

前端 未结 2 2050
既然无缘
既然无缘 2020-12-08 01:17

I have a route as followed:

var express = require(\'express\');
var router = express.Router();
var request = require(\'request\');

router.get(\'/\', functio         


        
2条回答
  •  天涯浪人
    2020-12-08 02:13

    You need to take the data you get from request() and send it back as the response to the original web server request. It was just continuously loading because you never sent any sort of response to the original request, thus the browser was just sitting there waiting for a response to come back and eventually, it will time out.

    Since request() supports streams, you can send back the data as the response very simply using .pipe() like this:

    var express = require('express');
    var router = express.Router();
    var request = require('request');
    
    router.get('/', function(req, res, next) {
      request({
        uri: 'http://www.giantbomb.com/api/search',
        qs: {
          api_key: '123456',
          query: 'World of Warcraft: Legion'
        }
      }).pipe(res);
    });
    
    module.exports = router;
    

    This will .pipe() the request() result into the res object and it will become the response to the original http request.

    Related answer here: How to proxy request back as response

提交回复
热议问题