Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.17 KB

TUTORIAL.md

File metadata and controls

34 lines (21 loc) · 1.17 KB

To use the spotify-lyrics app, you will need to provide a client id to connect to the spotify api

To get yours, first naviagate to the spotify developer portal and log in at the top right corner.

Then, go the dashboard and create an app.

Create app

Give it any name and description you want, and leave the "website" section empty.

Then, in the "Redirect URI" section, enter http://localhost:8888/callback.

In the "Which API/SDKs are you planning to use?" section, select "Web API".

Your app should look something like this

App configuration
Press the save button.

Once your app is created, open the app settings.

Settings

Finally, under "basic information", you'll see your client id.

Client id

You then have to copy it and write it in the settings.ini file after downloading the latest release, like so

[spotify]
client_id = <your client id>
redirect_uri = http://localhost:8888/callback