1.3 KiB
1.3 KiB
Your Spotify
YourSpotify is a self-hosted application that tracks what you listen and offers you a dashboard to explore statistics about it! It's composed of a web server which polls the Spotify API every now and then and a web application on which you can explore your statistics.
Creating the Spotify Application
For YourSpotify to work you need to provide a Spotify application public AND secret to the server environment. To do so, you need to create a Spotify application here.
- Click on Create a client ID.
- Fill out all the informations.
- Copy the public and the secret key respectively.
- Add an authorized redirect URI corresponding to your server location on the internet adding the suffix /oauth/spotify/callback.
- use the
EDIT SETTINGS
button on the top right corner of the page. - add your URI under the
Redirect URIs
section.
- i.e:
http://localhost:8080/oauth/spotify/callback
orhttp://home.mydomain.com/your_spotify_backend/oauth/spotify/callback
- Do not forget to hit the save button at the bottom of the popup.
- use the