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?