...
/Explore Tracks and Update Them in User’s Favorites
Explore Tracks and Update Them in User’s Favorites
Learn how to find tracks and update a users' favorite tracks.
We'll cover the following...
In this lesson, we will be using three different HTTP requests which are GET
, POST
, and DELETE
. We will be using the HTTP requests to find a track, add a track to a user’s playlists or favorites, and delete tracks from the user’s playlists or favorites.
Find a track on Deezer
We can use this endpoint to find any song available on Deezer. We will need an access token for the track to be readable
for the current user.
Press + to interact
The base URL for this endpoint is:
https://api.deezer.com/track/id
The path parameter id
, in the endpoint URL shown above, is to be ...