How to retrieve a YouTube video's tags with YouTube v3 API?

前端 未结 4 613
暖寄归人
暖寄归人 2020-12-20 15:17

I want to retrieve the tags for a specific YouTube video using v3 of the YouTube API.

I\'m able to retrieve a video with this request to the search endpoint, https:/

4条回答
  •  清歌不尽
    2020-12-20 15:42

    According to https://developers.google.com/youtube/v3/docs/videos/list it appears that the latest version of the YouTube API now returns tags:

    https://www.googleapis.com/youtube/v3/videos?key={API-key}&fields=items(snippet(title,description,tags))&part=snippet&id={video_id}
    

提交回复
热议问题