We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
https://accounts.spotify.com/authorize/?client_id=<CLIENT_ID>&response_type=code&redirect_uri=<REDIRECT_URI>&scope=user-read-private
Copy URL of the redirected address, and use the value for code, this is the authorization code for the next step.
Create a base64-encoded string of the following:
<CLIENT_ID>:<CLIENT_SECRET>
curl -H "Authorization: Basic <BASE_64-ENCODED_STRING>" -d grant_type=authorization_code -d code=<AUTHORIZATION_CODE> -d redirect_uri=<REDIRECT_URL> https://accounts.spotify.com/api/token