mirror of
https://github.com/c0de-archive/spotipy.git
synced 2025-07-30 14:00:18 +00:00
Merge pull request #109 from lwoloszy/master
Get new access token 60 seconds before old one times out
This commit is contained in:
@@ -78,7 +78,7 @@ class SpotifyClientCredentials(object):
|
||||
|
||||
def _is_token_expired(self, token_info):
|
||||
now = int(time.time())
|
||||
return token_info['expires_at'] < now
|
||||
return token_info['expires_at'] - now < 60
|
||||
|
||||
def _add_custom_values_to_token_info(self, token_info):
|
||||
"""
|
||||
|
Reference in New Issue
Block a user