diff options
| author | Fuwn <[email protected]> | 2023-01-02 20:59:43 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-01-02 20:59:43 -0800 |
| commit | ba35eb0739e424d5b875cc869f2964df6bf31624 (patch) | |
| tree | 54eeecf901ab8616e5168eea6f8fb94b2dc48cbc | |
| parent | fix(spotify.py): headers (diff) | |
| download | rubys_song_skipper-ba35eb0739e424d5b875cc869f2964df6bf31624.tar.xz rubys_song_skipper-ba35eb0739e424d5b875cc869f2964df6bf31624.zip | |
fix(spotify.py): headers
| -rw-r--r-- | rubys_song_skipper/spotify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rubys_song_skipper/spotify.py b/rubys_song_skipper/spotify.py index 3fadc30..b4ee38a 100644 --- a/rubys_song_skipper/spotify.py +++ b/rubys_song_skipper/spotify.py @@ -17,7 +17,7 @@ def bearer(code): # "client_secret": CLIENT_SECRET, # }, headers={ - "Authorization": AUTHORIZATION, + "Authorization": f"Basic {AUTHORIZATION}", "Accept": "application/json", "Content-Type": "application/x-www-form-urlencoded", "code": code, |