İçerik Türü: node.js ile uygulama / json gönderisi gönder


115

NodeJS'de böyle bir HTTP isteğini nasıl yapabiliriz? Örnek veya modül takdir edildi.

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

Yanıtlar:


284

Mikeal'ın istek modülü bunu kolayca yapabilir:

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
Bu faydalı cevap için teşekkür ederim. Sonunda seçeneğin iyi belgelendiğini anlıyorum. Ama diğerlerinin ortasında kayboldu ...
yves Baumes

1
headers: {'content-type' : 'application/json'},Seçeneği ekleyene kadar benim için işe yaramadı .
Guilherme Sampaio

- NodeJs 'istek' modülü kullanımdan kaldırıldı. - 'http' modülünü kullanarak bunu nasıl yaparız? Teşekkür ederim.
Andrei Diaconescu

11

Basit Örnek

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

Gibi resmi belgeler diyor ki:

body - PATCH, POST ve PUT istekleri için varlık gövdesi. Buffer, String veya ReadStream olmalıdır. Json doğruysa, gövde JSON-serileştirilebilir bir nesne olmalıdır.

JSON gönderirken, onu seçeneğin gövdesine koymanız yeterlidir.

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

4
Sadece ben mi yoksa belgeleri berbat mı?
Lucio

4

Nedense sadece bu bugün benim için çalıştı. Diğer tüm varyantlar , API'den kaynaklanan kötü json hatasıyla sonuçlandı .

Ayrıca, JSON yükü ile gerekli POST isteği oluşturmak için başka bir varyant.

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


0

Başlıklar ve gönderi ile istek kullanma.

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

Yana requestmodül diğer cevaplar kullanımı kaldırıldı erdiğinden, geçiş önerebilir 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()
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.