如何通过此 http 请求使用 node.js 'request' 库?

How to use the node.js 'request' library with this http request?

我试图向站点发出一个简单的请求。它应该得到 html 文本,但得到 ' '

此处的 NPM 模块:github.com/request/request

代码:

var fs = require('fs');
var request = require('request');

var options = {
                url:'https://sample.site/phpLoaders/getInventory/getInventory.php',
    encoding : 'utf8',
    gzip : true,
    forever: true,
    headers: {
        'Host': 'sample.site',
        'Connection': 'keep-alive',
        'Content-Length': '58',
        'Cache-Control': 'max-age=0',
        'Accept': '*/*',
        'Origin': 'https://csgosell.com',
        'X-Requested-With': 'XMLHttpRequest',
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',
        'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
        'Referer': 'https://sample.site/',
        'Accept-Encoding': 'gzip, deflate, br',
        'Accept-Language': 'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',
        'Cookie': 'my-cookies from browser'


    },
    form: {
        stage:'bot',
        steamId:76561198284997423,
        hasBonus:false,
        coins:0
    }
};



request.post(options, 
    function(error, response, body){
        console.log(response.statusCode);
        if (!error) {
            fs.writeFileSync('site.html', body);
        }
        else{
          console.log(error);
        }
     }
);

Chrome 请求:https://i.stack.imgur.com/zKQo5.png 节点请求:https://i.stack.imgur.com/yH9U3.png

区别在于headers: :权威:csgosell.com :方法:POST :路径:/phpLoaders/getInventory/getInventory.php :方案:https

谷歌搜索后,我认为它是 http2,并尝试将其放入另一个代理的选项中,但没有任何改变。

var spdy = require('spdy');

var agent = spdy.createAgent({
  host: 'sample.site',
  port: 443,
  spdy: {
  ssl: true,
 }


}).once('error', function (err) {
 this.emit(err);
});

options.agent = agent;

为了回答你的问题,我将 copy/paste 我的代码的一部分,使你能够从你的前端应用程序(angularJS)接收到你的后端应用程序(NodeJS)的 post 请求),以及另一个使您能够执行相反操作的函数,将 post 请求从 nodeJS 发送到另一个应用程序(可能会使用它):

1) 接收从 angularJS 或您的 nodeJS 应用程序中的任何内容发送的请求

 //Import the necessary libraries/declare the necessary objects
var express = require("express");
var myParser = require("body-parser");
var app = express();
// we will need the following imports for the inverse operation
var https = require('https')
var querystring = require('querystring')

      // we need these variables for the post request:


      var Vorname ;
      var Name ;
      var e_mail ;
      var Strasse ;


  app.use(myParser.urlencoded({extended : true}));
  // the post request is send from http://localhost:8080/yourpath
  app.post("/yourpath", function(request, response ) {
      // test the post request
      if (!request.body) return res.sendStatus(400);

      // fill the variables with the user data
       Vorname =request.body.Vorname;
       Name =request.body.Name;
       e_mail =request.body.e_mail;
       Strasse =request.body.Strasse;      
      response.status(200).send(request.body.title);

});

2) 反向发送一个 POST 请求从一个 nodeJS 应用程序到另一个应用程序

    function sendPostRequest()
    {
        // prepare the data that we are going to send to anymotion  
        var jsonData = querystring.stringify({
                "Land": "Land",
                "Vorname": "Vorname",
                "Name": "Name",
                "Strasse": Strasse,
            });
        var post_options = {
            host: 'achref.gassoumi.de',
            port: '443',
            method: 'POST',
            path: '/api/mAPI',
            headers: {
                'Content-Type': 'application/x-www-form-urlencoded',
                'Content-Length': jsonData.length
            }
        };
        // request object
            var post_req = https.request(post_options, function(res) {
            var result = '';
            res.on('data', function (chunk) {
                result += chunk;
                console.log(result);
            });
            res.on('end', function () {
            // show the result in the console : the thrown result in response of our post request
            console.log(result);
        });
        res.on('error', function (err) {
            // show possible error while receiving the result of our post request
            console.log(err);
        })
        });
        post_req.on('error', function (err) {
            // show error if the post request is not succeed
            console.log(err);
        });
        // post the data
        post_req.write(jsonData);
        post_req.end(); 
// ps : I used a https post request , you could use http if you want but you have to change the imported library and some stuffs in the code
    }

所以最后,我希望这个答案能帮助任何正在寻找如何在节点 JS 中获取 post 请求以及如何从 nodeJS 应用程序发送 Post 请求的人。

有关如何接收 post 请求的更多详细信息,请阅读 body-parser 库的 npm 文档:npm 官网文档