mirror of
https://github.com/c0de-archive/spotipy-experiments.git
synced 2024-12-22 17:42:40 +00:00
Use the util.authorize_api method
This commit is contained in:
parent
6801160694
commit
b15da78df1
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user