使用node.js发送Content-Type:application / json帖子


115

我们如何在NodeJS中发出这样的HTTP请求?示例或模块的赞赏。

curl https://www.googleapis.com/urlshortener/v1/url \
  -H 'Content-Type: application/json' \
  -d '{"longUrl": "http://www.google.com/"}'

Answers:


284

Mikeal的请求模块可以轻松做到这一点:

var request = require('request');

var options = {
  uri: 'https://www.googleapis.com/urlshortener/v1/url',
  method: 'POST',
  json: {
    "longUrl": "http://www.google.com/"
  }
};

request(options, function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body.id) // Print the shortened url.
  }
});

2
感谢您提供有用的答案。最后,我意识到该选项已被详细记录。但是迷失在许多其他人中间……
yves Baumes

1
直到我添加了headers: {'content-type' : 'application/json'},选项,它才对我有用。
Guilherme Sampaio,

-不推荐使用NodeJs的“请求”模块。-我们如何使用“ http”模块执行此操作?谢谢。
Andrei Diaconescu

11

简单的例子

var request = require('request');

//Custom Header pass
var headersOpt = {  
    "content-type": "application/json",
};
request(
        {
        method:'post',
        url:'https://www.googleapis.com/urlshortener/v1/url', 
        form: {name:'hello',age:25}, 
        headers: headersOpt,
        json: true,
    }, function (error, response, body) {  
        //Print the Response
        console.log(body);  
}); 

10

官方文档所述

body-PATCH,POST和PUT请求的实体主体。必须是Buffer,String或ReadStream。如果json为true,则body必须是JSON可序列化的对象。

发送JSON时,只需将其放在选项的主体中即可。

var options = {
    uri: 'https://myurl.com',
    method: 'POST',
    json: true,
    body: {'my_date' : 'json'}
}
request(options, myCallback)

4
是我还是它的文档很烂?
卢西奥

4

出于某种原因,今天这只对我有用。所有其他变体均以 API的错误json错误结尾。

此外,还有另一个变体,用于使用JSON有效负载创建所需的POST请求。

request.post({
    uri: 'https://www.googleapis.com/urlshortener/v1/url',
    headers: {'Content-Type': 'application/json'},
    body: JSON.stringify({"longUrl": "http://www.google.com/"})
});


0

使用带有标题和帖子的请求。

var options = {
            headers: {
                  'Authorization': 'AccessKey ' + token,
                  'Content-Type' : 'application/json'
            },
            uri: 'https://myurl.com/param' + value',
            method: 'POST',
            json: {'key':'value'}
 };
      
 request(options, function (err, httpResponse, body) {
    if (err){
         console.log("Hubo un error", JSON.stringify(err));
    }
    //res.status(200).send("Correcto" + JSON.stringify(body));
 })

0

由于request不建议使用其他答案的模块,我建议切换到node-fetch

const fetch = require("node-fetch")

const url = "https://www.googleapis.com/urlshortener/v1/url"
const payload = { longUrl: "http://www.google.com/" }

const res = await fetch(url, {
  method: "post",
  body: JSON.stringify(payload),
  headers: { "Content-Type": "application/json" },
})

const { id } = await res.json()
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.