How to get likes and dis likes count of a video using youtube data api v3 in android?

android, youtube-api, youtube-data-api

Solution

The search results just contain basic information. You have to then take the video ids from the search results and make a separate API request to get the details you want for the videos.

https://www.googleapis.com/youtube/v3/videos?key={MY API KEY}&part=statistics&id={IDs}

IDs are a comma separated list of the video id's you retrieved from the search.

Problem

I am trying to get all videos of a channel. I am getting the video id and thumbnails etc...but i am not able get likes, dis likes and comments count of a video. For example: here i am using BBC News channel id in the below url. ``` https://www.googleapis.com/youtube/v3/search?key={MY API KEY}&channelId=UC16niRr50-MSBwiO3YDb3RA&part=snippet,id&order=date&maxResults=20 ``` With this url i am getting viedo information but not likes, dis likes and comments count of a individual video. Please help me. TIA

Original source

Related problems