I'm wondering if there's any way to search for videos that only have x or more views.
I know I could return all results matching my query and simply filter through those that don't have enough, but that seems like a waste.
|
I'm wondering if there's any way to search for videos that only have x or more views. I know I could return all results matching my query and simply filter through those that don't have enough, but that seems like a waste. |
|||
|
|
|
Easy. You should read basic documentation before asking simple implementation questions. I felt like a research assistant looking this one up. I found it in about 20 seconds: https://developers.google.com/youtube/2.0/developers_guide_protocol It can filter the entries in the result set by ensuring that they match specific criteria. For example, you could use this parameter to specify that the API should only return entries for videos with more than 20 views, where the view count for each entry is identified in an XML element in the feed. In this case, the parameter does not necessarily affect the number of data fields that the API returns for an entry, but it can affect the number of entries actually returned.
|
|||||||||
|