We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eafffd2 commit b1d4d9eCopy full SHA for b1d4d9e
bandwidth/configuration.py
@@ -532,7 +532,7 @@ def get_access_token(self) -> str:
532
:return: The token for bearer HTTP authentication.
533
"""
534
now = int(time.time())
535
- print(f"now: {now}, exp: {self.temp_access_token}, token: {self.temp_access_token_expires_at}")
+ print(f"now: {now}, exp: {self.temp_access_token_expires_at}, token: {self.temp_access_token}")
536
if self.temp_access_token and self.temp_access_token_expires_at > now + 60:
537
return self.temp_access_token
538
else:
0 commit comments