enviar Content-Type: application / json post com node.js


115

Como podemos fazer uma solicitação HTTP como esta no NodeJS? Exemplo ou módulo apreciado.

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

Respostas:


284

O módulo de solicitação do Mikeal pode fazer isso facilmente:

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
Obrigado por esta resposta útil. No final, percebo que a opção está bem documentada. Mas perdida no meio de muitos outros ...
yves Baumes

1
Não funcionou para mim até adicionar a headers: {'content-type' : 'application/json'},opção.
Guilherme Sampaio

- o módulo 'request' do NodeJs está obsoleto. - como faríamos isso usando o módulo 'http'? Obrigado.
Andrei Diaconescu

11

Exemplo Simples

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

Como diz a documentação oficial :

body - corpo da entidade para solicitações PATCH, POST e PUT. Deve ser um Buffer, String ou ReadStream. Se json for verdadeiro, o corpo deve ser um objeto JSON serializável.

Ao enviar JSON basta colocá-lo no corpo da opção.

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

4
Sou só eu ou sua documentação é uma merda?
Lucio

4

Por alguma razão, só isso funcionou para mim hoje. Todas as outras variantes resultaram em erro json incorreto da API.

Além disso, outra variante para criar a solicitação POST necessária com carga útil JSON.

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


0

Usando solicitação com cabeçalhos e postagem.

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

Como o requestmódulo usado por outras respostas foi descontinuado, sugiro mudar para 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()
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.