authorize_rdio.py is a quick and easy Django command for authorizing a Rdio application with requests+requests oauth.
from django.core.management import BaseCommand
from requests_oauthlib import OAuth1Session
__author__ = 'martinsandstrom'
class Command(BaseCommand):
def handle(self, *args, **options):
"""
Authorizes a rdio application, requires consumer key and consumer access.
Example:
python manage.py authorize_rdio CONSUMER_KEY CONSUMER_SECRET
Based on:
http://www.rdio.com/developers/docs/web-service/oauth/ref-signing-requests
"""
if len(args) != 2:
print "Invalid arguments"
return
request_url = "http://api.rdio.com/oauth/request_token"
authorize_url = "https://www.rdio.com/oauth/authorize"
access_url = "http://api.rdio.com/oauth/access_token"
consumer_key = args[0]
consumer_secret = args[1]
# 1. Obtain a request token
oauth = OAuth1Session(consumer_key, client_secret=consumer_secret,
callback_uri="oob")
fetch_response = oauth.fetch_request_token(request_url)
resource_owner_key = fetch_response.get("oauth_token")
resource_owner_secret = fetch_response.get("oauth_token_secret")
# 2. Obtain authorization
authorization_url = oauth.authorization_url(authorize_url)
print 'Please go here and authorize,', authorization_url
verifier = raw_input('Paste the pin/verifier here: ').strip()
# 3. Obtain an access token
oauth = OAuth1Session(consumer_key,
client_secret=consumer_secret,
resource_owner_key=resource_owner_key,
resource_owner_secret=resource_owner_secret,
verifier=verifier)
oauth_tokens = oauth.fetch_access_token(access_url)
resource_owner_key = oauth_tokens.get('oauth_token')
resource_owner_secret = oauth_tokens.get('oauth_token_secret')
print "resource_owner_key: %s" % resource_owner_key
print "resource_owner_secret: %s" % resource_owner_secret
Drop it in your apps management/commands, then run: python manage.py authorize_rdio KEY SECRET. (The official Rdio documentation was written for oauth2).