I'm desperately trying to retrieve page's tabs using a batch request (with Facebook PHP SDK) but Facebook keeps returning the same error. Here's my code:
$query = array(
array('method' => 'GET', 'relative_url' => '/'.$page_id, 'name' => 'get-page' ),
array('method' => 'GET', 'relative_url' => '/'.$page_id.'/tabs', 'access_token' => '{result=get-page:$.data.0.access_token}'));
$res = $facebook->api('/?batch=' . json_encode($query), 'POST');
And here's the result:
array
'code' => int 403
'headers' =>
array
...
'body' => string '{"error":{"type":"OAuthException","message":"(#210) Subject must be a page."}}
I tried without the batch request, and it works just fine. I assume it comes from a bug in the Facebook API, but maybe someone found a workaround.
Thank you if anyone can help me!
EDIT:
Because no one seems to find a solution to this issue:
Does anyone know how fetch all the tabs from a fan page in a single request?