Yes,that,s what i meant
Your suggestion is good and working by using part=statistics and gives important info like viewcount,likes,dislikes.. but failed to get video ratings(number from 1-5 with maximum 5 given to the video by the users)
same problem discussed here
http://stackoverflow...tings-for-video
def videos_list(self, v_id):
url = 'videos?part=id%2Csnippet%2Cstatistics%2CcontentDetails&id=' + \
v_id.replace(',', '%2C') + self.key
return self.get_response(url, True)
https://www.googleapis.com/youtube/v3/videos?part=statistics&id=xtdbj2GVH_s&key=xxxxxxx
result
{
"kind": "youtube#videoListResponse",
"etag": "\"iDqJ1j7zKs4x3o3ZsFlBOwgWAHU/xc8ShF2dVz5Lvk8olv3ctBnKxbo\"",
"pageInfo": {
"totalResults": 1,
"resultsPerPage": 1
},
"items": [
{
"kind": "youtube#video",
"etag": "\"iDqJ1j7zKs4x3o3ZsFlBOwgWAHU/2K5XDmVNc_N1BeWK28eYtlaYo0k\"",
"id": "xtdbj2GVH_s",
"statistics": {
"viewCount": "556081",
"likeCount": "3140",
"dislikeCount": "209",
"favoriteCount": "0",
"commentCount": "157"
}
}
]
}