One of our apps gives an error 500 when someone utilizes the "Use Facebook As" feature. It looks like the following bit of code is the cause:
$AppToken = array(
'access_token' => $request_data['oauth_token']
);
$pageAdmin = $facebook->api('/me/accounts', 'GET', $AppToken);
// Find the page access token
//echo '<pre>Page Admin Data: '.print_r($pageAdmin['data'],true).'</pre>';
foreach ($pageAdmin['data'] as $data) {
if ($data['id'] == $request_data["page"]['id']) {
$pageToken['access_token'] = $data['access_token'];
continue;
}
}
Apparently we do not get an oauth_token to pass along to the API call.
Here is the code we use to get the proper permissions:
$loginUrl = $facebook->getLoginUrl(array(
'redirect_uri' => Config::$fbRedirectURL,
'canvas' => 1,
'response_type' => 'token',
/*'next_url'=> Config::$fbNextURL, */
'scope' => 'email,publish_stream,offline_access,manage_pages'
));
The code works for pages and users, just not when utilizing "Use Facebook As", any ideas what is causing this? I can post more code if necessary.