Content-Type:application / json post with node.jsを送信します


115

NodeJSでこのようなHTTPリクエストを作成するにはどうすればよいですか?例またはモジュールは高く評価されています。

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

回答:


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
この役立つ回答をありがとうございます。最終的に、私はオプションが十分に文書化されていることに気づきました。しかし、他のたくさんの真ん中で敗れた...
イブ・ボーム

1
私がheaders: {'content-type' : 'application/json'},オプションを追加するまで、それは私にとってはうまくいきませんでした。
ギルヘルムサンパイオ

-NodeJの「リクエスト」モジュールは非推奨です。-「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の場合、本体はJSONシリアル化可能オブジェクトである必要があります。

JSONを送信するときは、それをオプションの本文に含める必要があります。

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

4
それは私だけなのか、それともドキュメントが悪いのか?
Lucio

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()
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.