Reputation: 1731
I'm currently in the process of migrating from an obsolete youtube gdata API to V3. One of the things I'm looking for is :
Search videos using a filter
I used to run something like this
Will this V3 request will be equivalent using "q" parameter ?
https://www.googleapis.com/youtube/v3/search?part=snippet&q=sample_keyword&channelId=UCUtTNe0bVxvk8exLBKkvCNg&maxResults=50&key={my_key}&maxResults=2
Any pointers will be appreciated.
-Thanks,
Shamik
Upvotes: 1
Views: 1933
Reputation: 701
I'm using https://github.com/fent/node-ytdl-core to get keywords for youtube videos.
Upvotes: 0
Reputation: 4185
Yes, except for the different maxResults value you're using.
You can get tags only if you own the videos. Otherwise scrape the keywords metadata.
Upvotes: 1