Hi,
I need total playlist views in youtube please give me a good solution.
I have channel details and particular video details but cannot get the playlistitems views please help me.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Priyaranjan K SPosted Oct 5, 2015, 5:21 AM
You can use the new YouTube Data API v3 . All prior API s are deprecated and not working.
if you retrieve the video, the statistics part contains the viewCount:
from the doc:
https://developers.google.com/youtube/v3/docs/videos#resource
statistics.viewCount / The number of times the video has been viewed.
You can retrieve this info in the client side, or in the server side using some of the client libraries:
https://developers.google.com/youtube/v3/libraries
And you can test the API call from the doc: