Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
调用活动源的默认设置是所有类型。如果有一种按类型过滤的方法,那将是惊人的,这样我就可以获得上传的提要。这可能吗?
https://www.googleapis.com/youtube/v3/activities?access_token=####&part=id,snippet,contentDetails&home=true&maxResults=50
如果您正在寻找上传内容,您实际上应该调用 Channels 资源以获取 Uploads 播放列表,然后将 PlaylistItems 用于您的活动提要。
因此,要获取 Google 频道的上传内容,请在此处拨打电话:
https://www.googleapis.com/youtube/v3/channels?part=contentDetails&id=UCK8sQmJBp8GCxrOtXWBpyEA&key={YOUR_API_KEY}
您将在 json 响应中找到播放列表 ID (UUK8sQmJBp8GCxrOtXWBpyEA):
项目 -> contentDetails -> 相关播放列表 -> 上传
然后调用 PlaylistItems 资源,并将“UUK8sQmJBp8GCxrOtXWBpyEA”设置为 playlistId
https://www.googleapis.com/youtube/v3/playlistItems?part=id%2Csnippet%2CcontentDetails&maxResults=50&playlistId=UUK8sQmJBp8GCxrOtXWBpyEA&key={YOUR_API_KEY}