Reputation: 47
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
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