A web music player using Angular and Spotify API
As the backend is not hosted as of now, Favourites
is not available. So you will not be able to add a music to favourites section.
The token returned by Spotify for validation has to be generated by you as I am not using the proper authentication flow.
If you want to use the proper way of doing this
redirect_uri
you gave in the Spotify Dashboard
.token
returned by Spotify and send it to the frontend.localStorage
(or wherever you want).If you want to use the player (without the above steps) perform the following steps. Here some of the steps are bypassed to get the token
directly.
https://accounts.spotify.com/authorize?client_id=YOUR_CLIENT_ID&response_type=token&redirect_uri=https://dev-w738k3gh.auth0.com/login/callback
client_id
with your client_idredirect_uri
containing the access tokenlocalStorage
by the name token
and paste this token there.And that’s all, now you will be able to access all the songs and albums.