Closed Shpigford closed 5 years ago
If you remove a Saved Track, PLYLST currently doesn't have a way to know that.
First thought on how to handle this is to hit the /tracks/contain endpoint with an array of song IDs (max is 50), and see if they're still in there.
/tracks/contain
If not, set the "follow" record's active column to false.
active
false
https://developer.spotify.com/documentation/web-api/reference/library/check-users-saved-tracks/
Could be run daily (or as often as the Spotify rate limits allow).
Rolled out.
If you remove a Saved Track, PLYLST currently doesn't have a way to know that.
First thought on how to handle this is to hit the
/tracks/contain
endpoint with an array of song IDs (max is 50), and see if they're still in there.If not, set the "follow" record's
active
column tofalse
.https://developer.spotify.com/documentation/web-api/reference/library/check-users-saved-tracks/
Could be run daily (or as often as the Spotify rate limits allow).