Reputation: 373
How can i get videos from the youtube channel with duration and views count?
I tried this request:
but response doesn't contains duration/views count. Any ideas? Thx.
Upvotes: 1
Views: 489
Reputation: 2240
That data is not available in the snippet
field. Instead, make a second API call to the channels.list()
with the video IDs and request the contentDetails
and statistics
fields in your response. You can find documentation on the video resource here.
Upvotes: 1