-
-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to auth Spotify #65
Comments
Hey, first can you hide your SPOTIFY_SECRET key. Its must be secret, but you shared it here 😄 . Did you register in spotify dashboard your redirect URL? |
Nevermind! I deleted the last part of the redirect URL inside my docker compose file (
|
Hey,
I have a few issues with the API. When I try to connect my Spotify, I get redirected to
https://<my domain>.de//oauth/spotify
.I'm not sure why it uses the two
//
. However, I fix it by deleting on.After this, I get redirected to the Spotify API. Unfortunately, the next error
INVALID_CLIENT: Invalid redirect URI
. The reason for this is the following part in the URL:&redirect_uri=https%3A%2F%2F<my domain>%2Foauth%2Fspotify%2Fcallback%2Foauth%2Fspotify%2Fcallback
. I Also solved this by deleting the last%2Foauth%2Fspotify%2Fcallback
because it didn't make that much sense to me. After the next redirect, I'm back on my server's API with a 401 Error on the following URL:https://<my domain>/oauth/spotify/callback?code=<Authorized Key>
. Now I'm stuck and not quite sure why this happens.Does anyone have a solution? Maybe it's because I'm using an internal domain to access the Dashboard, and only the API is on a public domain.
The text was updated successfully, but these errors were encountered: