3

我得到一个名为“tumblrwks”(https://github.com/arkxu/tumblrwks)的库,它使用nodejs连接到tumblr API并且我可以工作,但问题是我想让它们形成一个私人博客,为此我需要OAuth 请求。

我如何在 Tumblr 中获取 OAuth(oauth_token 和 oauth_secret)?

这是我想用 OAuth 完成的代码,请帮助我

var Tumblr = require('tumblrwks');

/*
  You can get the consumerKey and consumerSecret by registing a tumblr app: http://www.tumblr.com/oauth/apps
*/

var tumblr = new Tumblr(
  {
    consumerKey: 'YOUR_CONSUMER_KEY',
    consumerSecret: 'YOUR_CONSUMER_SECRET',
    accessToken: 'ACCESS_TOKEN',
    accessSecret: 'ACCESS_SECRET'
  }, "void2012.tumblr.com"
  // specify the blog url now or the time you want to use
);

tumblr.get('/info', {hostname: 'void2012.tumblr.com'}, function(json){
  console.log(json);
});
4

1 回答 1

1

你应该去http://www.tumblr.com/oauth/apps在 tumblr 上注册一个应用程序。

完成注册后,您将获得您的 api 密钥。

来自http://www.tumblr.com/docs/en/api/v2

即使您不需要使用完全签名的 OAuth 请求,您也需要它来获取您的 API 密钥

于 2013-03-01T19:20:53.570 回答