mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-04-27 00:25:54 +03:00
[GH-ISSUE #1048] Using Spotipy in Django Application - access_token is the same for all the users, even with different Spotify accounts. #623
Labels
No labels
api-bug
bug
dependencies
documentation
duplicate
enhancement
external-ide
headless-mode
implicit-grant-flow
invalid
missing-endpoint
pr-welcome
private-api
pull-request
question
spotipy3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotipy#623
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Rafael-Rueda on GitHub (Dec 2, 2023).
Original GitHub issue: https://github.com/spotipy-dev/spotipy/issues/1048
So, to begin, I have this view which leads me to the beggining of my Spotipy authentication proccess:
With this, I get a code as a query string in my URL, which is used to receive my access_token to Spotify API.
Here is how I use this code to get my access_token:
In my print, I can see the access_token provided by the code, provided by the authorization of the user in the Spotify's website.
However, if I try to change the Spotify Account, opening a new tab in browser, (anonymous), and try to make the same process, i get an identical access_token as before, even with different Spotify accounts. So all the data i would use in my application, would be from a unique Spotify account, which is not what i want.
If someone know why this is happening, i would be very thankful !
Additional:
When I restart all my project from scratch, then, I do the first spotify authentication into my website, (which the spotify user is in the User Management of my Spotify App).
I get as result, the new user information, and a new access token. However, if try to login with a new Spotify user, the token remains the same, and the information is all of my first authenticated user.
I can imagine that there is something like a "cache" of access tokens, or something like that, that i need to clear before making another authentications. I dont know if its real, but any ideas would help me figure out.
Possible Solution:
Use the implicit flow without Spotipy module. Use requests module instead, to make requests to Spotify API.
This worked for me, but I still want to know the answer, why was I receiving the same access token for different users ?
@travesties commented on GitHub (Feb 5, 2024):
For anyone who is experiencing this problem, Spotipy does in fact cache access tokens. You can disable this when calling
get_access_tokenby passing in the parametercheck_cache=False. Here is the source code in question@dieser-niko commented on GitHub (Jun 12, 2024):
Hi there, no need to do
check_cache=False. You can just usespotipy.cache_handler.DjangoSessionCacheHandlerwhich would bind the token to sessions.