user56683
user56683

Reputation: 47

Detect changes to playlist with Youtube Playlist API

Is it possible to detect the change to a user's video playlists and fire an event using the YouTube API ?

Upvotes: 0

Views: 369

Answers (1)

ReyAnthonyRenacia
ReyAnthonyRenacia

Reputation: 17651

I don't think there's a press-one-button solution here. But you can try using PlaylistItems.list. It returns the videos contained in the playlist (50 maxresult per set). So if you want to detect if there's any changes, parse the current list and compare it to the original items contained in the list.

Upvotes: 1

Related Questions