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 am trying to fetch subscriptions of a youtube channel

$feedURL = 'http://gdata.youtube.com/feeds/api/users/BHUMGroup/subscriptions?v=2';

XML returned doesn't cover all the statistics. For example there is a channel http://gdata.youtube.com/apple I am subscribed to but it is not listed in XML

anyone knows how to fix it or any alternative?

share|improve this question

1 Answer

You can add query parameters to the url. With the max-results query you can fetch a maximum of 50 results. If you want more than 50 requests, you need to call this multiple times with start-index query.

http://gdata.youtube.com/feeds/api/users/BHUMGroup/subscriptions?v=2&max-results=50 will give maximum of 50 results. Fetch the next 50 results by adding the query start-index=51&max-results=50. Currently this is the only way you can achieve it.

share|improve this answer

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.