我想使用的tumblr API 2,http://www.tumblr.com/docs/en/api/v2的tumblr API 2:在哪裏 「的oauth_token」 和 「OAUTH_TOKEN_SECRET」
我已經註冊了此應用程序:http://www.tumblr.com/oauth/apps
但我只得到「的OAuth消費者鑰匙「和」祕密鑰匙「。 「OAUTH_TOKEN」和「OAUTH_TOKEN_SECRET」在哪裏?
一個程序https://gist.github.com/1242662需要這些參數:
class TumblrAPIv2:
def __init__(self, consumer_key, consumer_secret, oauth_token, oauth_token_secret):
self.consumer = oauth2.Consumer(consumer_key, consumer_secret)
self.token = oauth2.Token(oauth_token, oauth_token_secret)
self.url = "http://api.tumblr.com"
謝謝。什麼是「CALLBACK_URL」應該是? – DocWiki
CALLBACK_URL適用於Tumblr在用戶註冊/授權期間回撥您的應用程序。 –