Node.js内でリモートREST呼び出しを行う方法は?CURL?


189

Node.js、作るために子プロセスを使用するよりも、他のCURLのコールを、リモートサーバへのCURLの呼び出しにする方法があるRESTの APIを、戻りデータを取得するには?

また、リクエストヘッダーをリモートREST呼び出しに設定し、GET(またはPOST)でクエリ文字列も設定する必要があります。

私はこれを見つけます:http : //blog.nodejitsu.com/jsdom-jquery-in-5-lines-on-nodejs

ただし、クエリ文字列をPOSTする方法は示されていません。


回答:


212

見る http.request

var options = {
  host: url,
  port: 80,
  path: '/resource?id=foo&bar=baz',
  method: 'POST'
};

http.request(options, function(res) {
  console.log('STATUS: ' + res.statusCode);
  console.log('HEADERS: ' + JSON.stringify(res.headers));
  res.setEncoding('utf8');
  res.on('data', function (chunk) {
    console.log('BODY: ' + chunk);
  });
}).end();

3
それで、それがPOSTでも、クエリ文字列にデータを追加しますか?
murvinlai

3
@murvinlaiわかりません。ドキュメント、ソース、HTTP仕様を読んでください。その地域の専門家ではありません。
レイノス

15
注意すべきことの1つは、ホストエントリにhttpまたはhttpsを入れないことです。例:var options = {host:graph.facebook.com ....} not {host:http:graph.facebook.com}。それは私を数サイクルつまずかせました。(下記参照)。これらは両方とも素晴らしい答えです。ありがとうございます。
バイナリジャイアント、2013年

9
応答が長い場合、res.on( 'data'、..)を使用するだけでは不十分であることを指摘できますか?正しい方法は、res.on( 'end' ..)を使用して、すべてのデータをいつ受信したかを知ることだと思います。その後、処理できます。
Xerri 2013年

4
これは非常に古い答えです。今日のノードjsを書いている人は、npmjs.com / package / node- fetchまたはFetch標準に基づく他のフェッチAPIベースのパッケージを確実に使用します。以下の私の答えを参照してください。
2016年

95

リクエストの使用についてはどうですか—簡素化されたHTTPクライアント

2020年2月の編集:リクエストはサポートが終了したため、今後は使用しないでください。

ここにGETがあります:

var request = require('request');
request('http://www.google.com', function (error, response, body) {
    if (!error && response.statusCode == 200) {
        console.log(body) // Print the google web page.
     }
})

OPはPOSTも必要でした。

request.post('http://service.com/upload', {form:{key:'value'}})

1
google.comで正常に動作しますが、FacebookのグラフAPIを要求すると、「RequestError:Error:socket hang up」を返します。ご案内、ありがとうございます!
Dynamic Remo 2017年

このモジュールには多くの問題が含まれています!
Pratik Singhal

このようにREST APIを使用しているときにリクエストパラメータを渡すにはどうすればよいですか?
vdenotaris

2
2020年2月11日の時点で、リクエストは完全に廃止されました。ウェブサイトgithub.com/request/request#deprecated
サディエル

初心者が使用する必要があるものについてのガイダンスはありますか?私はこれを使用する多くの例を通してフィルタリングしています。
Steve3p0

36

http://isolaso​​ftware.it/2012/05/28/call-rest-api-with-node-js/を見てください。

var https = require('https');

/**
 * HOW TO Make an HTTP Call - GET
 */
// options for GET
var optionsget = {
    host : 'graph.facebook.com', // here only the domain name
    // (no http/https !)
    port : 443,
    path : '/youscada', // the rest of the url with parameters if needed
    method : 'GET' // do GET
};

console.info('Options prepared:');
console.info(optionsget);
console.info('Do the GET call');

// do the GET request
var reqGet = https.request(optionsget, function(res) {
    console.log("statusCode: ", res.statusCode);
    // uncomment it for header details
//  console.log("headers: ", res.headers);


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

});

reqGet.end();
reqGet.on('error', function(e) {
    console.error(e);
});

/**
 * 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);
});

/**
 * Get Message - GET
 */
// options for GET
var optionsgetmsg = {
    host : 'graph.facebook.com', // here only the domain name
    // (no http/https !)
    port : 443,
    path : '/youscada/feed?access_token=you_api_key', // the rest of the url with parameters if needed
    method : 'GET' // do GET
};

console.info('Options prepared:');
console.info(optionsgetmsg);
console.info('Do the GET call');

// do the GET request
var reqGet = https.request(optionsgetmsg, function(res) {
    console.log("statusCode: ", res.statusCode);
    // uncomment it for header details
//  console.log("headers: ", res.headers);


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

});

reqGet.end();
reqGet.on('error', function(e) {
    console.error(e);
});

1
dから値にアクセスするにはどうすればよいですか?d = {"data":[{"id":1111、 "name": "peter"}]}。名前の値を取得する方法?
ピーター2013

2
var thed = JSON.parse(d);を使用して値を取得できました。console.log( "id is:" + thed.data [0] .id); しかし、「予期しない入力の終了」が発生することがある
ピーター、2013

33

使い慣れた(Web開発者であれば)fetch()APIを使用するため、ノードフェッチを使用します。fetch()は、ブラウザから任意のHTTPリクエストを行う新しい方法です。

はい、これはノードのjs質問であることはわかっていますが、開発者が記憶して理解しなければならないAPIの数を減らし、JavaScriptコードの再利用性を向上させませんか?フェッチは標準ですので、それに集中するのはどうですか?

fetch()のもう1つの優れた点は、JavaScript Promiseを返すことです。そのため、次のような非同期コードを記述できます。

let fetch = require('node-fetch');

fetch('http://localhost', {
  method: 'POST',
  headers: {'Content-Type': 'application/json'},
  body: '{}'
}).then(response => {
  return response.json();
}).catch(err => {console.log(err);});

FetchはXMLHTTPRequestに取って代わります。ここではいくつかのだより情報


node-fetchAPIを作成する際の問題は、完全なURLのみが機能し、相対URLで機能しないことです。
セバスチャン


5

アクシオス

Node.jsでAxiosを使用した例(axios_example.js):

const axios = require('axios');
const express = require('express');
const app = express();
const port = process.env.PORT || 5000;

app.get('/search', function(req, res) {
    let query = req.query.queryStr;
    let url = `https://your.service.org?query=${query}`;

    axios({
        method:'get',
        url,
        auth: {
            username: 'the_username',
            password: 'the_password'
        }
    })
    .then(function (response) {
        res.send(JSON.stringify(response.data));
    })
    .catch(function (error) {
        console.log(error);
    });
});

var server = app.listen(port);

プロジェクトディレクトリで次のことを確認してください。

npm init
npm install express
npm install axios
node axios_example.js

次に、ブラウザーを使用してNode.js REST APIをテストできます。 http://localhost:5000/search?queryStr=xxxxxxxxx

同様に、次のように投稿できます。

axios({
  method: 'post',
  url: 'https://your.service.org/user/12345',
  data: {
    firstName: 'Fred',
    lastName: 'Flintstone'
  }
});

SuperAgent

同様に、SuperAgentを使用できます。

superagent.get('https://your.service.org?query=xxxx')
.end((err, response) => {
    if (err) { return console.log(err); }
    res.send(JSON.stringify(response.body));
});

また、基本認証を実行する場合は、次のようにします。

superagent.get('https://your.service.org?query=xxxx')
.auth('the_username', 'the_password')
.end((err, response) => {
    if (err) { return console.log(err); }
    res.send(JSON.stringify(response.body));
});

参照:


5

最新の非同期/待機機能を使用するには

https://www.npmjs.com/package/request-promise-native

npm install --save request
npm install --save request-promise-native

//コード

async function getData (){
    try{
          var rp = require ('request-promise-native');
          var options = {
          uri:'https://reqres.in/api/users/2',
          json:true
        };

        var response = await rp(options);
        return response;
    }catch(error){
        throw error;
    }        
}

try{
    console.log(getData());
}catch(error){
    console.log(error);
}

4

別の例-そのためのリクエストモジュールをインストールする必要があります

var request = require('request');
function get_trustyou(trust_you_id, callback) {
    var options = {
        uri : 'https://api.trustyou.com/hotels/'+trust_you_id+'/seal.json',
        method : 'GET'
    }; 
    var res = '';
    request(options, function (error, response, body) {
        if (!error && response.statusCode == 200) {
            res = body;
        }
        else {
            res = 'Not Found';
        }
        callback(res);
    });
}

get_trustyou("674fa44c-1fbd-4275-aa72-a20f262372cd", function(resp){
    console.log(resp);
});

4
var http = require('http');
var url = process.argv[2];

http.get(url, function(response) {
  var finalData = "";

  response.on("data", function (data) {
    finalData += data.toString();
  });

  response.on("end", function() {
    console.log(finalData.length);
    console.log(finalData.toString());
  });

});

3

cURLでは何も見つかりませんでしたので、node-libcurlのラッパーを作成し、https://www.npmjs.com/package/vps-rest-clientで見つけることができます。これ。

POSTを作成するには、次のようにします。

var host = 'https://api.budgetvm.com/v2/dns/record';
var key = 'some___key';
var domain_id = 'some___id';

var rest = require('vps-rest-client');
var client = rest.createClient(key, {
  verbose: false
});

var post = {
  domain: domain_id,
  record: 'test.example.net',
  type: 'A',
  content: '111.111.111.111'
};

client.post(host, post).then(function(resp) {
  console.info(resp);

  if (resp.success === true) {
    // some action
  }
  client.close();
}).catch((err) => console.info(err));

2

Node.js 4.4 以降を使用している場合は、reqclientをご覧ください。これにより、呼び出しを実行し、cURLスタイルでリクエストを記録できるため、アプリケーションの外部で簡単に呼び出しを確認して再現できます。

単純なコールバックを渡す代わりにPromiseオブジェクトを返すため、より「ファッション的な」方法で結果を処理し、結果を簡単に連鎖させ、標準的な方法でエラーを処理できます。また、各リクエストの多くのボイラープレート設定(ベースURL、タイムアウト、コンテンツタイプの形式、デフォルトヘッダー、URLのパラメーターとクエリバインディング、基本的なキャッシュ機能)を削除します。

これは、それを初期化し、呼び出しを行い、操作をcurlスタイルで記録する方法の例です。

var RequestClient = require("reqclient").RequestClient;
var client = new RequestClient({
    baseUrl:"http://baseurl.com/api/", debugRequest:true, debugResponse:true});
client.post("client/orders", {"client": 1234, "ref_id": "A987"},{"x-token": "AFF01XX"});

これはコンソールにログインします...

[Requesting client/orders]-> -X POST http://baseurl.com/api/client/orders -d '{"client": 1234, "ref_id": "A987"}' -H '{"x-token": "AFF01XX"}' -H Content-Type:application/json

そしてレスポンスが返ってきたら......

[Response   client/orders]<- Status 200 - {"orderId": 1320934}

これは、promiseオブジェクトで応答を処理する方法の例です。

client.get("reports/clients")
  .then(function(response) {
    // Do something with the result
  }).catch(console.error);  // In case of error ...

もちろん、次のものでインストールできますnpm install reqclient


1

curlrequestを使用して、要求する時間を簡単に設定できます。オプションでヘッダーを設定して、ブラウザー呼び出しを「偽装」することもできます。


1

警告:2020年2月11日以降、リクエストは完全に非推奨になりました。

form-dataで実装する場合、詳細については(https://tanaikech.github.io/2017/07/27/multipart-post-request-using-node.js):

var fs = require('fs');
var request = require('request');
request.post({
  url: 'https://slack.com/api/files.upload',
  formData: {
    file: fs.createReadStream('sample.zip'),
    token: '### access token ###',
    filetype: 'zip',
    filename: 'samplefilename',
    channels: 'sample',
    title: 'sampletitle',
  },
}, function (error, response, body) {
  console.log(body);
});

0

私はスーパーエージェントが本当に役立つことがわかりました、それは例えば非常に簡単です

const superagent=require('superagent')
superagent
.get('google.com')
.set('Authorization','Authorization object')
.set('Accept','application/json')
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.