For example, how could I get a JSON response of all the videos from channel "http://www.youtube.com/nba" that are tagged "playoffs"?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
YouTube calls The following URL shows videos from http://gdata.youtube.com/feeds/api/users/nba/uploads/-/sports/playoffs?v=2&alt=json |
|||
|
|
|
Try something like this: http://gdata.youtube.com/feeds/api/users/nba/uploads?q=playoffs but this is xml format, look the api document and do it as json by yourself. |
|||||||
|
|
I think you're looking for the So, I guess the link you're looking for is: http://gdata.youtube.com/feeds/api/users/nba/uploads?category=playoffs&alt=json |
||||
|
|