You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the process for retrieving tracks from a playlist uses a POST request. This needs to be changed to a GET request for better alignment with RESTful principles and to improve efficiency.
Tasks:
Refactor the current implementation to use a GET request instead of POST.
Ensure all tracks are properly loaded, especially for large playlists.
Note: Some cases have shown only 100 tracks load when a playlist has more (e.g., playlists with 112 tracks).
Additional Information:
Consider pagination or batching for large playlists to avoid incomplete data retrieval.
The text was updated successfully, but these errors were encountered:
aadityathukral
changed the title
Getting tracks from a playlist is currently a POST request, need to change it to a GET request
Issue: Change Playlist Track Retrieval from POST to GET Request
Nov 28, 2024
Description:
Currently, the process for retrieving tracks from a playlist uses a POST request. This needs to be changed to a GET request for better alignment with RESTful principles and to improve efficiency.
Tasks:
Additional Information:
The text was updated successfully, but these errors were encountered: