Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was looking at channels in YouTube and saw this link below and other stackoverflow messages.

http://code.google.com/apis/youtube/2.0/developers_guide_protocol_channel_search.html

My question is, is it possible to return a YouTube channel from a specific user? For instance, say I wanted the channel of..

http://www.youtube.com/user/NationalGeographic

What would this query look like? I can get to the query of say "search for videos about national geographic with...

http://gdata.youtube.com/feeds/api/channels?q=nationalgeographic&v=2&alt=json

But how do I say return all the videos for this specific channel (rather than searching the channels).

Thanks,

David

share|improve this question

1 Answer

up vote 5 down vote accepted

You could search by author.

See:

http://code.google.com/apis/youtube/2.0/developers_guide_protocol_api_query_parameters.html#authorsp

Example API uri:

http://gdata.youtube.com/feeds/api/videos?author=NationalGeographic&v=2&alt=json
share|improve this answer
Ah, I think I found the best way is to use Partner, I'm not quite sure what the difference is but apparently only partners can have channels... – david99world Jun 9 '11 at 9:26
1  
@david99world, what did you mean, to use Partner? – K3---rnc Nov 19 '12 at 10:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.