Manage Albums in a User’s Profile
Learn how to save or delete an album from a user profile using Spotify API.
Overview
We can manage the albums saved in a user profile using the Spotify API. In this lesson, we’ll discuss two types of HTTP requests. One is used to save an album to the current user profile whereas the other is used to remove an album from a user profile.
We can use the base URL https://api.spotify.com/v1/me/albums
to save or delete an album to the current user's profile. A PUT
request to this endpoint saves the album whereas a DELETE
...