In my application, I use the YouTube API. I got a download-related playlist of a channel’s resource, and then a list of all the videos.
This works fine for some time, but now this playlist returns “unregistered” videos, such as:
"status": {
"privacyStatus": "unlisted"
}
Is there a way to filter these videos? I thought they were "hidden", but they show ...
Edit : it even returns private videos:
"status": {
"privacyStatus": "private"
}
source
share