What is the oauth callback url for the spotify connection #286
-
|
I can't seem to figure out how to connect to spotify |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Use the Digarr URL that serves your instance, followed by: For a default local install, that would be: If Digarr is behind a reverse proxy, use the external URL that your browser uses for Digarr instead, for example: The important part is that the value must match exactly between the Spotify app's redirect URI list and the value Digarr sends when starting the Spotify connection. In the current source, the Spotify initiate route requires |
Beta Was this translation helpful? Give feedback.
-
|
Hey @OscarsWorldTech, thank you for your question. What @cookesan said is exactly it. |
Beta Was this translation helpful? Give feedback.
-
|
Beautiful, thank you both! |
Beta Was this translation helpful? Give feedback.
Use the Digarr URL that serves your instance, followed by:
For a default local install, that would be:
If Digarr is behind a reverse proxy, use the external URL that your browser uses for Digarr instead, for example:
The important part is that the value must match exactly between the Spotify app's redirect URI list and the value Digarr sends when starting the Spotify connection. In the current source, the Spotify initiate route requires
clientId,clientSecret, andredirectUri, sends that value asredirect_uri, and then the callback r…