我得到一个名为“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);
});