fishstick22 / angular-spotify-api-app

Spotify API Angular App
MIT License
0 stars 1 forks source link

Spotify API now requires authentication #5

Open fishstick22 opened 7 years ago

fishstick22 commented 7 years ago

Course sources updated into new project, but the Spotify API apparently changed in the last 13 days as a 'token' is now required on requests, Now getting this response

{ "error" : { "status" : 401, "message" : "No token provided" } }

Now we'll have to register and generate a token then figure how to pass this on the requests using Spotify Web API Authorization Guide

fishstick22 commented 7 years ago

Registered application and generated Client ID/Secret values and stored them in auth-tokens.json, now have to figure out how to read these into whatever code will pass these to the API

fishstick22 commented 7 years ago

Removing Unauthenticated calls to the Web API

On 29th May 2017 the /search /tracks /albums /artists and /users (and related) endpoints will start requiring an access token, bringing them in-line with all other Web API endpoints. A detailed overview of the changes can be found here.