How to get RSS feed of the most visited video of last 24hours from youtube? I wanna list the most visited video of last 24hour on the front page of my website using php
I already checked this but no rss feed generator found for this purpose.
This website lists the most visited video of last 24 hours but I wonder what API or RSS feed it iuses!
Thank you for your help in advance
This documentation, Standard feeds for channels, also discusses on how to retrieve standard feeds that list the most viewed or most subscribed YouTube channels. To retrieve a standard channel feed, send a GET request to the URL associated with that feed.
You can also check the viewCount
property which gives the number of times the video has been viewed.
"statistics": {
"viewCount": unsigned long,
"likeCount": unsigned long,
"dislikeCount": unsigned long,
"favoriteCount": unsigned long,
"commentCount": unsigned long
},
You can check these related SO threads:
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}