Announcements

Help Wizard

Step 1

NEXT STEP

Documentation Error on Refreshing Tokens

Documentation Error on Refreshing Tokens

I lost some time trying to debug this, commenting just so it's fixed.

 

In the browser example in https://developer.spotify.com/documentation/web-api/tutorials/refreshing-tokens the code reads:

 
localStorage.setItem('access_token', response.accessToken);
localStorage.setItem('refresh_token', response.refreshToken);
 
but it should be:
 
localStorage.setItem('access_token', response.access_token);
localStorage.setItem('refresh_token', response.refresh_token);
 

 

Reply
0 Replies

Suggested posts