HTTP请求节点。js使用mikeal的“请求”

时间:2022-07-01 16:57:07

I'm trying to use https://github.com/mikeal/request. What is wrong with my code? Error message is under code. In my program, I'm using my real App and Rest ID's

我正在尝试使用https://github.com/mikeal/request。我的代码有什么问题?错误消息在代码下面。在我的程序中,我使用我的真实应用和Rest ID

var request = require('request');
request.post( {
url: 'https://api.parse.com/1/classes/GameScore',
headers: {
    "X-Parse-Application-Id": "11111",
    "X-Parse-REST-API-Key": "222222",
    "Content-Type": "application/json" 
         },
body: {
    "score": 1337, "playerName": "Sean Plott", "cheatMode": false
    }
 }, 
function (error, response, body) {
  if(response.statusCode == 201){
    console.log('Status Update');
  } else {
    console.log('error: '+ response.statusCode);
    console.log(body);
  }
}
);

Error message:

错误信息:

node.js:134
    throw e; // process.nextTick error, or 'error' event on first tick
    ^
Error: Argument error, options.body.
at Request.init (/mnt/ws/users/$mn/mnort9/165767/node_modules/request/main.js:264:13)
at new Request (/mnt/ws/users/$mn/mnort9/165767/node_modules/request/main.js:102:8)
at request (/mnt/ws/users/$mn/mnort9/165767/node_modules/request/main.js:800:11)
at Function.post (/mnt/ws/users/$mn/mnort9/165767/node_modules/request/main.js:844:10)
at Object. (/mnt/ws/users/$mn/mnort9/165767/index.js:2:9)
at Module._compile (module.js:411:26)
at Object..js (module.js:417:10)
at Module.load (module.js:343:31)
at Function._load (module.js:302:12)
at Array.<anonymous> (module.js:430:10)

2 个解决方案

#1


39  

body should be a string, array or buffer. Not an object.

body应该是一个字符串、数组或缓冲区。不是一个对象。

If you want to send json then send json

如果您想发送json,请发送json

request({
    ...,
   json: { ... }
})

#2


1  

and i think the best

我认为最好的。

r = npm.request(options, function (error, response, body) {

if (error) {
var msg = error.code || 'Error code undefined!';
return;
};

//and after

if((response.statusCode == 200) || (response.statusCode == 201)){
}

}

#1


39  

body should be a string, array or buffer. Not an object.

body应该是一个字符串、数组或缓冲区。不是一个对象。

If you want to send json then send json

如果您想发送json,请发送json

request({
    ...,
   json: { ... }
})

#2


1  

and i think the best

我认为最好的。

r = npm.request(options, function (error, response, body) {

if (error) {
var msg = error.code || 'Error code undefined!';
return;
};

//and after

if((response.statusCode == 200) || (response.statusCode == 201)){
}

}