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 using Batch Requests in Facebook API, such as the following:

array('method' => 'GET', 'relative_url' => '/'.$user.'/likes') // to get the logged in user's likes
array('method' => 'GET', 'relative_url' => '/'.$user.'/friends?fields=id,name,birthday,gender') // to get the logged in user's friends' id, name, birthday and gender.

However when I get friends data and include the Likes (to get the Liked Pages), such as the following nothing comes up:

array('method' => 'GET', 'relative_url' => '/'.$user.'/friends?fields=id,name,birthday,gender,likes')

Anyone came across this problem?

share|improve this question
Do you have the user_likes and friends_likes permission? it could be returning blank because you can't access some of the data you're asking. Also, it could be timing out if there's a lot of friends and a lot of likes – Igy May 30 '12 at 16:47
@lgy Yes I do have the permissions set to use them. Could be timing out - do you have an approach to such a problem? – John Smith May 31 '12 at 7:34
You could split the friends into smaller chunks (e.g. 50?) and request the likes for the friends in batches of 50 – Igy May 31 '12 at 15:21
So how did you solve this? Did you get all permissions? I think for the birthday you needed a special permission. Also did you provide the token when sending the batch? – firepol Nov 7 '12 at 13:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.