node.js – 如何在Node中发送OAuth请求

前端之家收集整理的这篇文章主要介绍了node.js – 如何在Node中发送OAuth请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想访问node.js中的WS REST API.我有oauth_consumer_key和oauth_token以及API端点. oauth_signature_method是HMAC-SHA1.

如何在Node中发送OAuth请求?

是否有模块/库来生成请求标头?我期望的功能如下:

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

>更新10/14/2012.添加解决方案.

我正在使用下面的代码.

  1. var OAuth = require('oauth').OAuth;
  2.  
  3. 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');
  4.  
  5. // Get the request token
  6. consumer.getOAuthRequestToken(function(err,oauth_token,oauth_token_secret,results ){
  7. console.log('==>Get the request token');
  8. console.log(arguments);
  9. });
  10.  
  11.  
  12. // Get the authorized access_token with the un-authorized one.
  13. consumer.getOAuthAccessToken('requestkey','requestsecret',function (err,results){
  14. console.log('==>Get the access token');
  15. console.log(arguments);
  16. });
  17.  
  18. // Access the protected resource with access token
  19. var url='http://term.ie/oauth/example/echo_api.PHP?method=foo&bar=baz';
  20. consumer.get(url,'accesskey','accesssecret',data,response){
  21. console.log('==>Access the protected resource with access token');
  22. console.log(err);
  23. console.log(data);
  24. });

解决方法

猜你在找的Node.js相关文章