Skip to content

Instantly share code, notes, and snippets.

View TheQueenOfHearts90's full-sized avatar

Stéphanie TheQueenOfHearts90

View GitHub Profile
@TheQueenOfHearts90
TheQueenOfHearts90 / oauth_tumblr.py
Created March 22, 2019 00:40 — forked from codingjester/oauth_tumblr.py
OAuth Tumblr Getting Access Tokens
import urlparse
import oauth2 as oauth
consumer_key = 'consumer_key'
consumer_secret = 'consumer_secret'
request_token_url = 'http://www.tumblr.com/oauth/request_token'
access_token_url = 'http://www.tumblr.com/oauth/access_token'
authorize_url = 'http://www.tumblr.com/oauth/authorize'