Set up Spotify API - Bennett-Wendorf/Deskity GitHub Wiki
- To get started, go to the developer portal and login, accepting any developer terms as needed
- From there, you can click
Create an App
, giving it a name and description and checking the box for agreeing to the terms - Click on the newly created application, as we'll need to set up a few things.
- Copy the client id and paste it in the
.secrets.toml
file
[Spotify_Widget]
client_id = "<Your id Here>"
- Click show client secret, copy it, and paste it in the
.secrets.toml
file as well
[Spotify_Widget]
client_id = "<Your id Here>"
client_secret = "<Your secret here>"
- Open the settings menu for the app with the
Edit Settings
button - Add a new redirect URI of
http://localhost:8888/redirect
- Make sure to scroll all the way to the bottom and click save before navigating away from the settings screen!
For more information, you can check out Spotify's article.