Use the util.authorize_api method

This commit is contained in:
David Todd 2018-04-24 19:55:20 -05:00
parent 6801160694
commit b15da78df1
1 changed files with 4 additions and 27 deletions

View File

@ -33,32 +33,9 @@ def get_now_playing(sp):
except TypeError: except TypeError:
return "Nothing is playing" return "Nothing is playing"
def authorize_api(username, scope=None): # Authorization Scope, can possibly be a dict?
if not scope: scope = 'user-read-currently-playing'
# Authorization Scope, can possibly be a dict? sp = util.authorize_api(username, scope, 'server')
scope = 'user-read-currently-playing'
print "[%.2fs] Authorizing %s with this auth scope: %s" % \
(time.time()-start_time, username, scope)
# The access token appears to expire around 2000ish seconds of use.
# Rerunning this and retrieving the callback url (with new token) will allow the script to continue
# Use HttpSimpleServer based auth if available (using c0de's spotipy for example)
if hasattr(util, 'obtain_token_localhost'):
token = util.obtain_token_localhost(username, scope)
else:
token = util.prompt_for_user_token(username, scope)
if token:
# Authorize with the API
return spotipy.Spotify(auth=token)
else:
print "[%.2fs] Unable to authorize %s - Did they approve the oauth login?" % \
(time.time()-start_time, username)
sys.exit()
sp = authorize_api(username)
# Main loop # Main loop
while True: while True:
@ -69,7 +46,7 @@ while True:
print "[%.2fs] Access Token for %s Expired, reaquiring..." % \ print "[%.2fs] Access Token for %s Expired, reaquiring..." % \
(time.time()-start_time, username) (time.time()-start_time, username)
# Reauth and get the next now playing # Reauth and get the next now playing
sp = authorize_api(username) sp = util.authorize_api(username, scope, 'server')
continue continue
else: else:
raise Exception(e) raise Exception(e)