Sende Content-Type: application / json post mit node.js

115

Wie können wir eine solche HTTP-Anfrage in NodeJS stellen? Beispiel oder Modul geschätzt.

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

Antworten:

284

Das Anforderungsmodul von Mikeal kann dies auf einfache Weise tun:

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.
  }
});
Josh Smith
quelle
2
Vielen Dank für diese hilfreiche Antwort. Am Ende ist mir klar, dass die Option gut dokumentiert ist. Aber mitten in vielen anderen verloren ...
yves Baumes
1
Es hat bei mir nicht funktioniert, bis ich die headers: {'content-type' : 'application/json'},Option hinzugefügt habe .
Guilherme Sampaio
- Das 'Request'-Modul von NodeJs ist veraltet. - Wie würden wir das mit dem 'http'-Modul machen? Danke dir.
Andrei Diaconescu
11

Einfaches Beispiel

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);  
}); 
Poonam Gupta
quelle
10

Wie die offizielle Dokumentation sagt:

body - Entity body für PATCH-, POST- und PUT-Anforderungen. Muss ein Puffer, ein String oder ein ReadStream sein. Wenn json wahr ist, muss body ein JSON-serialisierbares Objekt sein.

Wenn Sie JSON senden, müssen Sie es nur in den Hauptteil der Option einfügen.

var options = {
    uri: 'https://myurl.com',
    method: 'POST',
    json: true,
    body: {'my_date' : 'json'}
}
request(options, myCallback)
JiN
quelle
4
Ist es nur ich oder seine Dokumentation ist scheiße?
Lucio
4

Aus irgendeinem Grund hat heute nur das für mich funktioniert. Alle anderen Varianten hatten einen schlechten JSON- Fehler von der API.

Außerdem eine weitere Variante zum Erstellen der erforderlichen POST-Anforderung mit JSON-Nutzdaten.

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

Paul T. Rawkeen
quelle
0

Anfrage mit Headern und Post verwenden.

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));
 })
Cristian Cardoso
quelle
0

Da das requestModul, das andere Antworten verwenden, veraltet ist, kann ich vorschlagen, zu Folgendem zu wechseln 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()
ehrencrona
quelle