Youtube API to get most viewed video for a day

こ雲淡風輕ζ 提交于 2019-12-22 06:49:37

问题


  • Is there a way to get the most viewed video on youtube for a particular day?
  • Is there any API available for it?
  • Is there some source which gives you the video ?

回答1:


Yeah they don't have stats on a particular day but they do have a running viewCount. So you can use the API info at

https://developers.google.com/youtube/v3/docs/search/list

to make something like

https://www.googleapis.com/youtube/v3/search?part=snippet&order=viewCount&publishedAfter=2014-10-29T00%3A00%3A00Z&publishedBefore=2014-10-31T00%3A00%3A00Z&key={YOUR_API_KEY}

Maybe that will help?



来源:https://stackoverflow.com/questions/26648543/youtube-api-to-get-most-viewed-video-for-a-day

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!