The default for a call to the activity feed is all types. It would be amazing if there was a way to filter by type so I could get a feed of just uploads. Is this possible?
标签:
youtube-api
相关问题
- YouTube API refresh token revoked with 400 code “i
- YouTube Data API v3 allowed referers for browser a
- Auto Upload of Videos to my account, using youtube
- handling errors in youtube data api in javascript
- YouTube API v3.0: How do you determine if a video
相关文章
- How to get the last 24 hours worth of videos from
- How can I get a list of the most viewed Youtube vi
- YouTube API 3 GET last videos from specific User
- youtube-upload runs from terminal but not cron cal
- Our application uploads hundreds of videos per day
- Youtube iframe api check if video exists
- Play YouTube playlist automatically
- Can I schedule YouTube videos for release via the
If you're looking for uploads, you should actually make a call to the Channels resource to get the Uploads playlist, and then use PlaylistItems for your activity feed.
So to get the Google channel's uploads, make a call here:
You will find the playlist id (UUK8sQmJBp8GCxrOtXWBpyEA) here in the json response:
items -> contentDetails -> relatedPlaylists -> uploads
Then make a call to the PlaylistItems resource with "UUK8sQmJBp8GCxrOtXWBpyEA" set as the playlistId