Retrieving youtube most_viewed url

186 Views Asked by At

How to apply filter in the youtube most_viewed video .

Like url for most_viewed videos is : http://gdata.youtube.com/feeds/api/standardfeeds/most_viewed?v=2

i wanted to apply filters inside the above url . like how to search the videos by keywords inside the most_viewed category .

Request :Please don't refer Youtube Developer Guide

1

There are 1 best solutions below

1
On

The only filter I know of is the category keyword. For example, to filter most viewed "Games" videos, you would use :

http://gdata.youtube.com/feeds/api/standardfeeds/most_viewed_Games?v=2

The complete categories list is made available by Google.

[EDIT :]

The manual page statement makes it clear :

In general, parameters that are used for filtering and ordering results are only supported for search requests.

Here is the full manual page

Hope this helps !