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

前端 未结 4 611
暖寄归人
暖寄归人 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:44

    Following method to fetch YouTube title, description and tags

    1. First of all create Google API key
      https://console.cloud.google.com/home/dashboard

    2. go to credentials - create API key
      https://console.cloud.google.com/apis/credentials?folder=&organizationId=&project=

    3. enable YouTube API
      https://console.developers.google.com/apis/api/youtube.googleapis.com/overview?project=

    4. download postman software to POST data on google server YouTube API
      https://www.googleapis.com/youtube/v3/videos?key=your-key&fields=items(snippet(title,description,tags))&part=snippet&id=youtube-id

提交回复
热议问题