node.jsでHTTP POSTリクエストはどのように行われますか?


946

node.jsで、データを使用して送信HTTP POSTリクエストを作成するにはどうすればよいですか?


16
Jed Watsonの回答で示唆されているように、低レベルのAPIを作成しているのでない限り、リクエストを使用することを強くお勧めします。
namuol 2013年

4
node-fetchネイティブfetchJavaScriptメソッドの実装であるwhichを使用して、HTTPリクエストを作成できます。
Fez Vrasta

この投稿では、リクエストを使用するための基本的な使用シナリオについて説明します。blog.modulus.io/node.js-tutorial-how-to-use-request-module
Shaswat Rungta

回答:


855

node.jsを使用してGoogleコンパイラAPIにPOSTリクエストを送信する例を次に示します。

// We need this to build our post string
var querystring = require('querystring');
var http = require('http');
var fs = require('fs');

function PostCode(codestring) {
  // Build the post string from an object
  var post_data = querystring.stringify({
      'compilation_level' : 'ADVANCED_OPTIMIZATIONS',
      'output_format': 'json',
      'output_info': 'compiled_code',
        'warning_level' : 'QUIET',
        'js_code' : codestring
  });

  // An object of options to indicate where to post to
  var post_options = {
      host: 'closure-compiler.appspot.com',
      port: '80',
      path: '/compile',
      method: 'POST',
      headers: {
          'Content-Type': 'application/x-www-form-urlencoded',
          'Content-Length': Buffer.byteLength(post_data)
      }
  };

  // Set up the request
  var post_req = http.request(post_options, function(res) {
      res.setEncoding('utf8');
      res.on('data', function (chunk) {
          console.log('Response: ' + chunk);
      });
  });

  // post the data
  post_req.write(post_data);
  post_req.end();

}

// This is an async file read
fs.readFile('LinkedList.js', 'utf-8', function (err, data) {
  if (err) {
    // If this were just a small part of the application, you would
    // want to handle this differently, maybe throwing an exception
    // for the caller to handle. Since the file is absolutely essential
    // to the program's functionality, we're going to exit with a fatal
    // error instead.
    console.log("FATAL An error occurred trying to read in the file: " + err);
    process.exit(-2);
  }
  // Make sure there's data before we post it
  if(data) {
    PostCode(data);
  }
  else {
    console.log("No data to post");
    process.exit(-1);
  }
});

ハードコードされた文字列ではなく、ファイルからデータを送信する方法を示すためにコードを更新しました。これfs.readFileを達成するためにasync コマンドを使用し、読み取りが成功した後に実際のコードをポストします。エラーがある場合はそれがスローされ、データがない場合は、プロセスは失敗を示す負の値で終了します。


4
content-lengthヘッダーは正しく計算されていますか?バイトでしょ?
エリック

7
querystring.stringify() はネストされたオブジェクトをサポートしいないためqs.stringify()代わりに使用したい場合があります。
johndodo 2013

51
Content-Lengthバイトであり、必ずしも文字列の長さではありません(UTF-16など)。使用Buffer.byteLength(data)は常に正しいでしょう。
greenimpala 2014年

4
標準のポストquerystring.stringifyデータを送信する場合、のオブジェクトは、この回答に表示されるジャンクではなく、独自のデータオブジェクトである必要があります(ファイルベースのオブジェクトに役立つ場合があります)。私は何年もの間それで立ち往生していました... stackoverflow.com/questions/9768192/…私の完全な解決策を提供しました
RozzA

7
補足:SSLで暗号化されたサイトを使用している場合は、「https」ライブラリが必要です。あなただけの443にポートを変更することはできません
デイブコリンズ

1137

これは、リクエストライブラリを使用するとはるかに簡単になります。

var request = require('request');

request.post(
    'http://www.yoursite.com/formpage',
    { json: { key: 'value' } },
    function (error, response, body) {
        if (!error && response.statusCode == 200) {
            console.log(body);
        }
    }
);

優れた構文の提供に加えて、jsonリクエストを簡単にし、oauth署名(twitterなど)を処理し、マルチパートフォーム(ファイルのアップロードなど)およびストリーミングを実行できます。

リクエストをインストールするにはコマンドを使用します npm install request


153
{form:{key: 'value'}}は{json:{key: 'value'}}に置き換える必要があります(質問はフォームに固有ではないため)。また、 'form'と 'json'はリクエストライブラリのキーワードであり、カスタムデータの一部ではないことも理解する必要があります(この最後のコメントが表示される可能性があるので、それを理解するのに少し時間がかかりました...)
blacelle

7
私はこの質問と回答に戻ってきます。それは本当に質問に対する「その」答えであるはずです。
Spencer Kormos

6
この答えには純粋に金色のバッジが必要です。受け入れられたものよりもはるかに便利です...そしてそれはすでに2012年に存在していましたか?ワオ
ゾルタンシュミット

3
このコマンド 'npm install --save request'
Shady Sherif

18
このライブラリは廃止されました。
Evorlor

138

リクエストライブラリを利用できます。https://www.npmjs.com/package/request

var request = require('request');

JSONデータを投稿するには:

var myJSONObject = { ... };
request({
    url: "http://josiahchoi.com/myjson",
    method: "POST",
    json: true,   // <--Very important!!!
    body: myJSONObject
}, function (error, response, body){
    console.log(response);
});

XMLデータを投稿するには:

var myXMLText = '<xml>...........</xml>'
request({
    url: "http://josiahchoi.com/myjson",
    method: "POST",
    headers: {
        "content-type": "application/xml",  // <--Very important!!!
    },
    body: myXMLText
}, function (error, response, body){
    console.log(response);
});

ドキュメントで確認した後。次のように記述されています。json-本文をJSON表現に設定し、Content-type:application / jsonヘッダーを追加します。さらに、応答本文をJSONとして解析します。つまり、json = trueの場合、ヘッダーとjsonと本文が設定されます。それ以外の場合、ヘッダーは設定されず、テキストとして解析されます。(上記のXMLの例のように)。そのため、リクエストAPIは使いやすく単純化されていますが、最初は理解するのが非常に困難です。
ジョサイア・チョイ

技術的にはドキュメントに記載されていますが、どの例もそれを示していません。フォームデータのみです。これは干し草の山の中での針であり、JSでajaxを使用する2番目に頻繁な方法であり、Webで最も一般的な方法の1つであるため、これは非常に省略されています。
カイルベイカー

request.postの使用は、メソッドとしてPOSTを指定するよりもIMOの方がいくらか優れています。request.postを使用するためのGitHubの例を
drorw '18

12
このライブラリは廃止されました。
Evorlor

44

RestlerNeedleを使用していますは生産目的でます。どちらもネイティブのhttprequestよりもはるかに強力です。基本認証、特別なヘッダーエントリ、またはファイルのアップロード/ダウンロードでリクエストすることができます。

post / get操作に関しては、httprequestを使用したraw ajax呼び出しよりもはるかに簡単に使用できます。

needle.post('https://my.app.com/endpoint', {foo:'bar'}, 
    function(err, resp, body){
        console.log(body);
});

リクエストの前にnode-form-dataとsuperagentを試してみました。マルチパートフォームファイルをアップロードしようとしたときに、needleだけが正しく機能しました。
ポールヤング

35

シンプルで依存関係がありません。結果を待つことができるように約束を使用します。応答本文を返し、応答ステータスコードをチェックしません。

const https = require('https');

function httpsPost({body, ...options}) {
    return new Promise((resolve,reject) => {
        const req = https.request({
            method: 'POST',
            ...options,
        }, res => {
            const chunks = [];
            res.on('data', data => chunks.push(data))
            res.on('end', () => {
                let body = Buffer.concat(chunks);
                switch(res.headers['content-type']) {
                    case 'application/json':
                        body = JSON.parse(body);
                        break;
                }
                resolve(body)
            })
        })
        req.on('error',reject);
        if(body) {
            req.write(body);
        }
        req.end();
    })
}

使用法:

const res = await httpsPost({
    hostname: 'sentry.io',
    path: `/api/0/organizations/org/releases/${changesetId}/deploys/`,
    headers: {
        'Authorization': `Bearer ${process.env.SENTRY_AUTH_TOKEN}`,
        'Content-Type': 'application/json',
    },
    body: JSON.stringify({
        environment: isLive ? 'production' : 'demo',
    })
})

write方法req,write()は何のために使用されますか?
アリ

@Ari書き込み要求のボディ...それnodejs.org/api/...
MPEN

21

また、使用することができますRequestify、私はそれがキャッシュをサポートnodeJS +のために書いた本当にクールでシンプルなHTTPクライアントを。

次のようにしてください:

    var requestify = require('requestify');

    requestify.post('http://example.com', {
        hello: 'world'
    })
    .then(function(response) {
        // Get the response body (JSON parsed or jQuery object for XMLs)
        response.getBody();
    });

1
それは私にとっては機能しません、ここで問題を参照してください:github.com/ranm8/requestify/issues/2
Segal-Halevi

20

アップデート2020:

私は本当にPhinを楽しんでいます - 超軽量Node.js HTTPクライアント

2つの異なる方法で使用できます。1つはPromise(非同期/待機)を備え、もう1つは従来のコールバックスタイルを備えています。

インストール方法: npm i phin

それからまっすぐにREADME awaitです:

const p = require('phin')

await p({
    url: 'https://ethanent.me',
    method: 'POST',
    data: {
        hey: 'hi'
    }
})


妥協のない(コールバック)スタイル:

const p = require('phin').unpromisified

p('https://ethanent.me', (err, res) => {
    if (!err) console.log(res.body)
})

以下のよう2015、最小限のコーディングでこれを実現できるさまざまなライブラリが存在します。低レベルのHTTPの制御を絶対に必要としない限り、HTTPリクエストにはエレガントで軽量なライブラリをお勧めします。

そのようなライブラリの1つは Unirestです。

インストールするには、を使用しますnpm
$ npm install unirest

そしてHello, World!、誰もが慣れている例に。

var unirest = require('unirest');

unirest.post('http://example.com/helloworld')
.header('Accept', 'application/json')
.send({ "Hello": "World!" })
.end(function (response) {
  console.log(response.body);
});


エキストラ:
多くの人がリクエスト の使用も提案しています[2]

裏でライブラリをUnirest使用していることは注目に値しrequestます。

Unirestは、リクエストオブジェクトに直接アクセスするためのメソッドを提供します。

例:

var Request = unirest.get('http://mockbin.com/request');

1
私がかなり見た目が良いもう1つはgithub.com/request/requestです。これは、少なくともこの記事の執筆時点でunirestよりも少し人気があるようです
Lochlan

私は要求を証明することができます。とても良い図書館です。リクエストはより低レベルの機能を提供するため、特定のアプリケーションに使用するのが適切だと思います。低レベルのものを気にする必要がない場合は、Unirestで十分だと思います。
Levi Roberts

リクエストに依存する場合、ユニレストはなぜ軽量と見なされるのですか?リクエスト自体には22の依存関係があります。これがどのように軽量であるかはわかりません
raphadko

@raphadko私は長年にわたって機能の膨張が起こっていると確信しています。回答を投稿したときのタイムスタンプを必ず確認してください;)
Levi Roberts

17
var https = require('https');


/**
 * HOW TO Make an HTTP Call - POST
 */
// do a POST request
// create the JSON object
jsonObject = JSON.stringify({
    "message" : "The web of things is approaching, let do some tests to be ready!",
    "name" : "Test message posted with node.js",
    "caption" : "Some tests with node.js",
    "link" : "http://www.youscada.com",
    "description" : "this is a description",
    "picture" : "http://youscada.com/wp-content/uploads/2012/05/logo2.png",
    "actions" : [ {
        "name" : "youSCADA",
        "link" : "http://www.youscada.com"
    } ]
});

// prepare the header
var postheaders = {
    'Content-Type' : 'application/json',
    'Content-Length' : Buffer.byteLength(jsonObject, 'utf8')
};

// the post options
var optionspost = {
    host : 'graph.facebook.com',
    port : 443,
    path : '/youscada/feed?access_token=your_api_key',
    method : 'POST',
    headers : postheaders
};

console.info('Options prepared:');
console.info(optionspost);
console.info('Do the POST call');

// do the POST call
var reqPost = https.request(optionspost, function(res) {
    console.log("statusCode: ", res.statusCode);
    // uncomment it for header details
//  console.log("headers: ", res.headers);

    res.on('data', function(d) {
        console.info('POST result:\n');
        process.stdout.write(d);
        console.info('\n\nPOST completed');
    });
});

// write the json data
reqPost.write(jsonObject);
reqPost.end();
reqPost.on('error', function(e) {
    console.error(e);
});

リクエストまたはレスポンスのいずれかでリクエスト投稿本文を表示する方法はありますか?
jacoballenwood 2017

17

NodeでHTTP POSTリクエストを行うために使用できるオープンソースライブラリが数十あります。

1. Axios(推奨)

const axios = require('axios');

const data = {
    name: 'John Doe',
    job: 'Content Writer'
};

axios.post('https://reqres.in/api/users', data)
    .then((res) => {
        console.log(`Status: ${res.status}`);
        console.log('Body: ', res.data);
    }).catch((err) => {
        console.error(err);
    });

2.

const needle = require('needle');

const data = {
    name: 'John Doe',
    job: 'Content Writer'
};

needle('post', 'https://reqres.in/api/users', data, {json: true})
    .then((res) => {
        console.log(`Status: ${res.statusCode}`);
        console.log('Body: ', res.body);
    }).catch((err) => {
        console.error(err);
    });

3. リクエスト

const request = require('request');

const options = {
    url: 'https://reqres.in/api/users',
    json: true,
    body: {
        name: 'John Doe',
        job: 'Content Writer'
    }
};

request.post(options, (err, res, body) => {
    if (err) {
        return console.log(err);
    }
    console.log(`Status: ${res.statusCode}`);
    console.log(body);
});

4. ネイティブHTTPSモジュール

const https = require('https');

const data = JSON.stringify({
    name: 'John Doe',
    job: 'Content Writer'
});

const options = {
    hostname: 'reqres.in',
    path: '/api/users',
    method: 'POST',
    headers: {
        'Content-Type': 'application/json',
        'Content-Length': data.length
    }
};


const req = https.request(options, (res) => {
    let data = '';

    console.log('Status Code:', res.statusCode);

    res.on('data', (chunk) => {
        data += chunk;
    });

    res.on('end', () => {
        console.log('Body: ', JSON.parse(data));
    });

}).on("error", (err) => {
    console.log("Error: ", err.message);
});

req.write(data);
req.end();

詳しくは、こちらの記事をご覧ください


14

これが私がリクエストを作成するために使用する最も簡単な方法です。「リクエスト」モジュールを使用します。

「リクエスト」モジュールをインストールするコマンド:

$ npm install request

コード例:

var request = require('request')

var options = {
  method: 'post',
  body: postData, // Javascript object
  json: true, // Use,If you are sending JSON data
  url: url,
  headers: {
    // Specify headers, If any
  }
}

request(options, function (err, res, body) {
  if (err) {
    console.log('Error :', err)
    return
  }
  console.log(' Body :', body)

});

Node.jsの組み込みの「http」モジュールを使用してリクエストを行うこともできます。


1
このライブラリは廃止されました。
Yuri Tkachenko

12

私はスーパーエージェントのシンプルさが好きです(https://github.com/visionmedia/superagent)。ノードとブラウザの両方で同じAPI。

;(async function() {
  var response = await superagent.post('http://127.0.0.1:8125/', {age: 2})
  console.log(response)
})

node-fetch(https://www.npmjs.com/package/node-fetch)もあります。これにはfetch、ブラウザーから一致するAPIがありますが、これには手動のクエリ文字列エンコーディングが必要で、コンテンツタイプを自動的に処理しません。したがって、他のすべての作業スーパーエージェントが行います。


1
そして、ニードル、ユニレスト、およびcoとは対照的に、軽量であることを実現します(スーパーエージェント:16k、ユニレスト:1M、ニードル:530K)
Lars

9

promiseベースのHTTPリクエストを探している場合、axiosはうまく機能します。

  const axios = require('axios');

  axios.post('/user', {firstName: 'Fred',lastName: 'Flintstone'})
      .then((response) => console.log(response))
      .catch((error) => console.log(error));

または

await axios.post('/user', {firstName: 'Fred',lastName: 'Flintstone'})

6

Rest / JSONリクエスト
を送信するにはリクエストパッケージを使用して、送信する必要がある値をJson変数に保存します。

最初にnpm install request --saveによってコンソールにrequireパッケージをインストールします

var request = require('request');

    var options={
                'key':'28',
                'key1':'value',
                'key2':'value'
                }

    request({
             url:"http://dev.api.ean.com/ean-services/rs/hotel/v3/ping?                      
                 minorRev="+options.key+
                 "&cid="+options.key1+
                 "&apiKey="+options.key2,
             method:"POST",
             json:true},function(error,response,body){
                     console.log(body)
               }
    );

2
独自のクエリ文字列を作成しないでください。値を適切にエンコードすることを怠っています。Node.jsには、まさにこの目的のためのライブラリがあります。nodejs.org
Brad

このライブラリは廃止されました。
Yuri Tkachenko

4

これを達成する方法を説明するビデオを見つけました:https : //www.youtube.com/watch?v=nuw48-u3Yrg

デフォルトの「http」モジュールと「querystring」および「stringbuilder」モジュールを使用します。アプリケーションは、Webページから2つの数値(2つのテキストボックスを使用)を取得し、送信時に(テキストボックスの値を永続化するとともに)それら2つの数値の合計を返します。これは私が他のどこでも見つけることができる最もよい例です。

var http = require("http");
var qs = require("querystring");
var StringBuilder = require("stringbuilder");

var port = 9000;

function getCalcHtml(req, resp, data) {
    var sb = new StringBuilder({ newline: "\r\n" });
    sb.appendLine("<html>");
    sb.appendLine(" <body>");
    sb.appendLine("     <form method='post'>");
    sb.appendLine("         <table>");
    sb.appendLine("             <tr>");
    sb.appendLine("                 <td>Enter First No: </td>");

    if (data && data.txtFirstNo) {
        sb.appendLine("                 <td><input type='text' id='txtFirstNo' name='txtFirstNo' value='{0}'/></td>", data.txtFirstNo);
    }
    else {
        sb.appendLine("                 <td><input type='text' id='txtFirstNo' name='txtFirstNo' /></td>");
    }

    sb.appendLine("             </tr>");
    sb.appendLine("             <tr>");
    sb.appendLine("                 <td>Enter Second No: </td>");

    if (data && data.txtSecondNo) {
        sb.appendLine("                 <td><input type='text' id='txtSecondNo' name='txtSecondNo' value='{0}'/></td>", data.txtSecondNo);
    }
    else {
        sb.appendLine("                 <td><input type='text' id='txtSecondNo' name='txtSecondNo' /></td>");
    }

    sb.appendLine("             </tr>");
    sb.appendLine("             <tr>");
    sb.appendLine("                 <td><input type='submit' value='Calculate' /></td>");
    sb.appendLine("             </tr>");

    if (data && data.txtFirstNo && data.txtSecondNo) {
        var sum = parseInt(data.txtFirstNo) + parseInt(data.txtSecondNo);
        sb.appendLine("             <tr>");
        sb.appendLine("                 <td>Sum: {0}</td>", sum);
        sb.appendLine("             </tr>");
    }

    sb.appendLine("         </table>");
    sb.appendLine("     </form>")
    sb.appendLine(" </body>");
    sb.appendLine("</html>");
    sb.build(function (err, result) {
        resp.write(result);
        resp.end();
    });
}

function getCalcForm(req, resp, data) {
    resp.writeHead(200, { "Content-Type": "text/html" });
    getCalcHtml(req, resp, data);
}

function getHome(req, resp) {
    resp.writeHead(200, { "Content-Type": "text/html" });
    resp.write("<html><html><head><title>Home</title></head><body>Want to some calculation? Click <a href='/calc'>here</a></body></html>");
    resp.end();
}

function get404(req, resp) {
    resp.writeHead(404, "Resource Not Found", { "Content-Type": "text/html" });
    resp.write("<html><html><head><title>404</title></head><body>404: Resource not found. Go to <a href='/'>Home</a></body></html>");
    resp.end();
}

function get405(req, resp) {
    resp.writeHead(405, "Method not supported", { "Content-Type": "text/html" });
    resp.write("<html><html><head><title>405</title></head><body>405: Method not supported</body></html>");
    resp.end();
}

http.createServer(function (req, resp) {
    switch (req.method) {
        case "GET":
            if (req.url === "/") {
                getHome(req, resp);
            }
            else if (req.url === "/calc") {
                getCalcForm(req, resp);
            }
            else {
                get404(req, resp);
            }
            break;
        case "POST":
            if (req.url === "/calc") {
                var reqBody = '';
                req.on('data', function (data) {
                    reqBody += data;
                    if (reqBody.length > 1e7) { //10MB
                        resp.writeHead(413, 'Request Entity Too Large', { 'Content-Type': 'text/html' });
                        resp.end('<!doctype html><html><head><title>413</title></head><body>413: Request Entity Too Large</body></html>');
                    }
                });
                req.on('end', function () {
                    var formData = qs.parse(reqBody);
                    getCalcForm(req, resp, formData);
                });
            }
            else {
                get404(req, resp);
            }
            break;
        default:
            get405(req, resp);
            break;
    }
}).listen(port);

4

この私のためのソリューションPOSTGET

Postメソッドについて:

本文がJSONオブジェクトの場合は、それを使って逆シリアル化しJSON.stringifyContent-Lenghtそれに応じてヘッダーを設定することが重要です。

      var bodyString=JSON.stringify(body)
      var _headers = {
        'Content-Length': Buffer.byteLength(bodyString)
      };

リクエストに書き込む前に:

request.write( bodyString );

GetPost方法について:

timeout発生する可能性がありsocketますが、同じようにそのハンドラを登録しなければならないので、切断:

request.on('socket', function (socket) {
        socket.setTimeout( self.timeout );
        socket.on('timeout', function() {
            request.abort();
            if(timeout) return timeout( new Error('request timed out') );
        });
    });

一方、requestハンドラがあります

       request.on('timeout', function () {
          // Timeout happend. Server received request, but not handled it
          // (i.e. doesn't send any response or it took to long).
          // You don't know what happend.
          // It will emit 'error' message as well (with ECONNRESET code).
          req.abort();
          if(timeout) return timeout( new Error('request timed out') );
        });

両方のハンドラーを登録することを強くお勧めします。

応答の本文はチャンク化されているため、dataハンドラーでチャンクを連結する必要があります。

      var body = '';
      response.on('data', function(d) {
          body += d;
      });

で、全体のレスポンスボディが含まれます。endbody

      response.on('end', function() {
        try {
            var jsonResponse=JSON.parse(body);
            if(success) return success( jsonResponse );
        } catch(ex) { // bad json
          if(error) return error(ex.toString());
        }
      });

try... catch theJSON.parse`でラップしても安全です。実際に適切にフォーマットされたjsonであることを確認することはできず、リクエストを実行するときにそれを確認する方法がないためです。

モジュール: SimpleAPI

/**
 * Simple POST and GET
 * @author Loreto Parisi (loretoparisi at gmail dot com)
*/
(function() {

  var SimpleAPI;

  SimpleAPI = (function() {

    var qs = require('querystring');

    /**
     * API Object model
     * @author Loreto Parisi (loretoparisi at gmail dot com)
     */
    function SimpleAPI(host,port,timeout,ssl,debug,json) {

      this.host=host;
      this.port=port;
      this.timeout=timeout;
      /** true to use ssl - defaults to true */
      this.ssl=ssl || true;
      /** true to console log */
      this.debug=debug;
      /** true to parse response as json - defaults to true */
      this.json= (typeof(json)!='undefined')?json:true;
      this.requestUrl='';
      if(ssl) { // use ssl
          this.http = require('https');
      } else { // go unsafe, debug only please
          this.http = require('http');
      }
    }

    /**
     * HTTP GET
     * @author Loreto Parisi (loretoparisi at gmail dot com)
     */
    SimpleAPI.prototype.Get = function(path, headers, params, success, error, timeout) {

      var self=this;
      if(params) {
        var queryString=qs.stringify(params);
        if( queryString ) {
          path+="?"+queryString;
        }
      }
      var options = {
        headers : headers,
        hostname: this.host,
        path: path,
        method: 'GET'
      };
      if(this.port && this.port!='80') { // port only if ! 80
        options['port']=this.port;
      }
      if(self.debug) {
        console.log( "SimpleAPI.Get", headers, params, options );
      }
      var request=this.http.get(options, function(response) {

          if(self.debug) { // debug
            console.log( JSON.stringify(response.headers) );
          }

          // Continuously update stream with data
          var body = '';
          response.on('data', function(d) {
              body += d;
          });
          response.on('end', function() {
            try {
              if(self.json) {
                var jsonResponse=JSON.parse(body);
                if(success) return success( jsonResponse );
              }
              else {
                if(success) return success( body );
              }
            } catch(ex) { // bad json
              if(error) return error( ex.toString() );
            }
          });
        });
        request.on('socket', function (socket) {
            socket.setTimeout( self.timeout );
            socket.on('timeout', function() {
                request.abort();
                if(timeout) return timeout( new Error('request timed out') );
            });
        });
        request.on('error', function (e) {
          // General error, i.e.
          //  - ECONNRESET - server closed the socket unexpectedly
          //  - ECONNREFUSED - server did not listen
          //  - HPE_INVALID_VERSION
          //  - HPE_INVALID_STATUS
          //  - ... (other HPE_* codes) - server returned garbage
          console.log(e);
          if(error) return error(e);
        });
        request.on('timeout', function () {
          // Timeout happend. Server received request, but not handled it
          // (i.e. doesn't send any response or it took to long).
          // You don't know what happend.
          // It will emit 'error' message as well (with ECONNRESET code).
          req.abort();
          if(timeout) return timeout( new Error('request timed out') );
        });

        self.requestUrl = (this.ssl?'https':'http') + '://' + request._headers['host'] + request.path;
        if(self.debug) {
          console.log("SimpleAPI.Post",self.requestUrl);
        }
        request.end();
    } //RequestGet

    /**
     * HTTP POST
     * @author Loreto Parisi (loretoparisi at gmail dot com)
     */
    SimpleAPI.prototype.Post = function(path, headers, params, body, success, error, timeout) {
      var self=this;

      if(params) {
        var queryString=qs.stringify(params);
        if( queryString ) {
          path+="?"+queryString;
        }
      }
      var bodyString=JSON.stringify(body)
      var _headers = {
        'Content-Length': Buffer.byteLength(bodyString)
      };
      for (var attrname in headers) { _headers[attrname] = headers[attrname]; }

      var options = {
        headers : _headers,
        hostname: this.host,
        path: path,
        method: 'POST',
        qs : qs.stringify(params)
      };
      if(this.port && this.port!='80') { // port only if ! 80
        options['port']=this.port;
      }
      if(self.debug) {
        console.log( "SimpleAPI.Post\n%s\n%s", JSON.stringify(_headers,null,2), JSON.stringify(options,null,2) );
      }
      if(self.debug) {
        console.log("SimpleAPI.Post body\n%s", JSON.stringify(body,null,2) );
      }
      var request=this.http.request(options, function(response) {

          if(self.debug) { // debug
            console.log( JSON.stringify(response.headers) );
          }

          // Continuously update stream with data
          var body = '';
          response.on('data', function(d) {
              body += d;
          });
          response.on('end', function() {
            try {
                console.log("END", body);
                var jsonResponse=JSON.parse(body);
                if(success) return success( jsonResponse );
            } catch(ex) { // bad json
              if(error) return error(ex.toString());
            }
          });

        });

        request.on('socket', function (socket) {
            socket.setTimeout( self.timeout );
            socket.on('timeout', function() {
                request.abort();
                if(timeout) return timeout( new Error('request timed out') );
            });
        });
        request.on('error', function (e) {
          // General error, i.e.
          //  - ECONNRESET - server closed the socket unexpectedly
          //  - ECONNREFUSED - server did not listen
          //  - HPE_INVALID_VERSION
          //  - HPE_INVALID_STATUS
          //  - ... (other HPE_* codes) - server returned garbage
          console.log(e);
          if(error) return error(e);
        });
        request.on('timeout', function () {
          // Timeout happend. Server received request, but not handled it
          // (i.e. doesn't send any response or it took to long).
          // You don't know what happend.
          // It will emit 'error' message as well (with ECONNRESET code).
          req.abort();
          if(timeout) return timeout( new Error('request timed out') );
        });

        self.requestUrl = (this.ssl?'https':'http') + '://' + request._headers['host'] + request.path;
        if(self.debug) {
          console.log("SimpleAPI.Post",self.requestUrl);
        }

        request.write( bodyString );
        request.end();

    } //RequestPost

    return SimpleAPI;

  })();

  module.exports = SimpleAPI

}).call(this);

使用法:

// Parameters
// domain: example.com
// ssl:true, port:80
// timeout: 30 secs
// debug: true
// json response:true
var api = new SimpleAPI('posttestserver.com', 80, 1000 * 10, true, true, true); 

var headers = {
    'Content-Type' : 'application/json',
    'Accept' : 'application/json' 
};
var params = {
  "dir" : "post-test"
};
var method = 'post.php';

api.Post(method, headers, params, body
    , function(response) { // success
       console.log( response );
    }
    , function(error) { // error
      console.log( error.toString() );
    }
    , function(error) { // timeout
       console.log( new Error('timeout error') );
    });

4

投稿を処理してプロジェクトのリクエストを取得するための低レベルのユーティリティを作成する際に多くの苦労を重ねた後、私は自分の努力をここに投稿することにしました。受け入れられた回答の多くの行に、JSONデータを送信するためのhttpおよびhttps POSTリクエストを行うためのスニペットがあります。

const http = require("http")
const https = require("https")

// Request handler function
let postJSON = (options, postData, callback) => {

    // Serializing JSON
    post_data = JSON.stringify(postData)

    let port = options.port == 443 ? https : http

    // Callback function for the request
    let req = port.request(options, (res) => {
        let output = ''
        res.setEncoding('utf8')

        // Listener to receive data
        res.on('data', (chunk) => {
            output += chunk
        });

        // Listener for intializing callback after receiving complete response
        res.on('end', () => {
            let obj = JSON.parse(output)
            callback(res.statusCode, obj)
        });
    });

   // Handle any errors occurred while making request
    req.on('error', (err) => {
        //res.send('error: ' + err.message)
    });

    // Request is made here, with data as string or buffer
    req.write(post_data)
    // Ending the request
    req.end()
};

let callPost = () => {

    let data = {
        'name': 'Jon',
        'message': 'hello, world'
    }

    let options = {
        host: 'domain.name',       // Your domain name
        port: 443,                 // 443 for https and 80 for http
        path: '/path/to/resource', // Path for the request
        method: 'POST',            
        headers: {
            'Content-Type': 'application/json',
            'Content-Length': Buffer.byteLength(data)
        }
    }

    postJSON(options, data, (statusCode, result) => {
        // Handle response
        // Process the received data
    });

}

2
シリアル化されたpost_dataを使用することはありませんか?jsオブジェクトとして書き込むと、デフォルトでバッファに変換されますか?
ThatBrianDude 2017年

3
let request = require('request');
let jsonObj = {};
request({
    url: "https://myapii.com/sendJsonData",
    method: "POST",
    json: true,
    body: jsonObj
    }, function (error, resp, body){
       console.log(resp);
});

または、このライブラリを使用できます:

let axios = require("axios");
let jsonObj = {};

const myJsonAPI = axios.create({
   baseURL: 'https://myapii.com',
   timeout: 120*1000
});

let response = await myJsonAPI.post("sendJsonData",jsonobj).catch(e=>{
    res.json(e);
});
console.log(response);

requestライブラリは廃止されました。
Yuri Tkachenko

3

Axiosは、ブラウザーおよびNode.js用のpromiseベースのHTTPクライアントです。Axiosを使用すると、非同期HTTPリクエストをRESTエンドポイントに送信し、CRUD操作を簡単に実行できます。プレーンJavaScriptまたはVueやReactなどのライブラリで使用できます。

const axios = require('axios');

        var dataToPost = {
          email: "your email",
          password: "your password"
        };

        let axiosConfiguration = {
          headers: {
              'Content-Type': 'application/json;charset=UTF-8',
              "Access-Control-Allow-Origin": "*",
          }
        };

        axios.post('endpoint or url', dataToPost, axiosConfiguration)
        .then((res) => {
          console.log("Response: ", res);
        })
        .catch((err) => {
          console.log("error: ", err);
        })

2

追加の構成オプションとカスタムヘッダーを使用するaxios.postリクエストの別のaxiosサンプルを投稿します。

var postData = {
  email: "test@test.com",
  password: "password"
};

let axiosConfig = {
  headers: {
      'Content-Type': 'application/json;charset=UTF-8',
      "Access-Control-Allow-Origin": "*",
  }
};

axios.post('http://<host>:<port>/<path>', postData, axiosConfig)
.then((res) => {
  console.log("RESPONSE RECEIVED: ", res);
})
.catch((err) => {
  console.log("AXIOS ERROR: ", err);
})


0

リクエストの依存関係を使用する。

簡単な解決策:

 import request from 'request'
 var data = {
        "host":"127.1.1.1",
        "port":9008
    }

request.post( baseUrl + '/peers/connect',
        {
            json: data,  // your payload data placed here
            headers: {
                'X-Api-Key': 'dajzmj6gfuzmbfnhamsbuxivc', // if authentication needed
                'Content-Type': 'application/json' 
            }
        }, function (error, response, body) {
            if (error) {
                callback(error, null)
            } else {
                callback(error, response.body)
            }
        });

3
どこrequestから来たの?
CodyBugstein 2018

このライブラリは廃止されました。
Yuri Tkachenko

0

Request-Promise約束に基づく応答を提供します。2xx以外のhttp応答コードは、promiseを拒否します。これは、options.simple = falseを設定することで上書きできます。

var options = {
  method: 'POST',
  uri: 'http://api.posttestserver.com/post',
  body: {
  some: 'payload'
 },
  json: true // Automatically stringifies the body to JSON
};

rp(options)
.then(function (parsedBody) {
    // POST succeeded...
})
.catch(function (err) {
    // POST failed...
});
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.