admin管理员组

文章数量:1379351

I want to programmatically show my own channels youtube clips on a website. Is it possible to get the list of clips shown at youtube/feed/clips using the Youtube API? I have tried replacing 'playlist' with 'clips' using the method below but it does not work. I'm guessing does not exist.

To replicate my attempt using postman...

  1. get a api key from google console
  2. add permission to access youtube api to the scope
  3. set up a new get request
  4. select oath2 from the authorisation types
  5. use this url ;channelId=[YOUR CHANNEL ID HERE]&maxResults=25&key=[YOUR API KEY HERE]

The above works for playlists but not for clips.

本文标签: Is it possible to get a list of clips from the YouTube APIStack Overflow