You can watch this YouTube playlist to see how I wrote this example
-
Run
npm run start
for a dev server. Navigate tohttp://localhost:4200/
. The app will automatically reload if you change any of the source files. -
You must register your own Spotify Application and replace
client_id
andclient_secret
inSpotifyAPIService
export class SpotifyAPIService {
client_id = "[YOUR OWN CLIENT ID]";
client_secret = "[YOUR OWN SECRET KEY]";
//...
}
This project was generated with Angular CLI version 1.0.0.