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.com/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 https://youtube.googleapis.com/youtube/v3/clips does not exist.
To replicate my attempt using postman...
- get a api key from google console
- add permission to access youtube api to the scope
- set up a new get request
- select oath2 from the authorisation types
- use this url
https://youtube.googleapis.com/youtube/v3/playlists?part=snippet&channelId=[YOUR CHANNEL ID HERE]&maxResults=25&key=[YOUR API KEY HERE]
The above works for playlists but not for clips.