-
-
Notifications
You must be signed in to change notification settings - Fork 47
Creating Spotify OAuth App
Daniel Martins edited this page Apr 20, 2016
·
3 revisions
For Spotify.el to be able to access and modify your playlists and other data, you first need to create an Oauth2 application that will be used by Spotify.el to interact with the Spotify API.
To do that, first to Create an Application and give your application a name and a description:
At this point, the client ID and the client secret is already available, so set those values to spotify-oauth2-client-id
and spotify-oauth2-client-secret
, respectively:
(setq spotify-oauth2-client-secret "<spotify-app-client-secret>")
(setq spotify-oauth2-client-id "<spotify-app-client-id>")
Then, scroll down a little bit, type http://localhost:8591/ as the Redirect URI for the application, and click Add:
Finally, scroll to the end of the page and hit Save.