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.

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.

share|improve this question

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.