7

node.jsのWSRESTAPIにアクセスしたい。とoauth_consumer_keyoauth_tokenAPIエンドポイントがあります。oauth_signature_methodはHMAC-SHA1です。

ノードでOAuthリクエストを送信するにはどうすればよいですか?

リクエストヘッダーを生成するためのモジュール/ライブラリはありますか?私が期待するのは次のような関数です:

var httprequest = createRequest(url, method, consumer_key, token);

  • 2012年10月14日更新。ソリューションを追加します。

以下のコードを使用しています。

var OAuth = require('oauth').OAuth;

consumer = new OAuth('http://term.ie/oauth/example/request_token.php',
                    'http://term.ie/oauth/example/access_token.php',
                    'key', 'secret', '1.0',
                    null, 'HMAC-SHA1');

// Get the request token                    
consumer.getOAuthRequestToken(function(err, oauth_token, oauth_token_secret, results ){
    console.log('==>Get the request token');
    console.log(arguments);
});


// Get the authorized access_token with the un-authorized one.
consumer.getOAuthAccessToken('requestkey', 'requestsecret', function (err, oauth_token, oauth_token_secret, results){
    console.log('==>Get the access token');
    console.log(arguments);
});

// Access the protected resource with access token
var url='http://term.ie/oauth/example/echo_api.php?method=foo&bar=baz';
consumer.get(url,'accesskey', 'accesssecret', function (err, data, response){
    console.log('==>Access the protected resource with access token');
    console.log(err);
    console.log(data);
});
4

2 に答える 2

9

https://github.com/ciaranj/node-oauthを使用します

于 2012-10-13T17:31:23.897 に答える
0

これは、合理化されて便利なように見える完全なノードTwitterパッケージです。 https://npmjs.org/package/twitter

于 2014-01-13T10:18:47.187 に答える