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.

Whenever using the Facebook PHP SDK, especially when calling the API, I get an internal server error.

For example, using $user=$facebook->api('/me'); I get Internal server Error(500).

share|improve this question
1  
Your server logs can. – ceejayoz Dec 22 '11 at 17:00
What if you access any other PHP file? – Usman Dec 22 '11 at 17:01
more details would help, unless this is a rhetorical question. – Jakub Dec 22 '11 at 17:04

2 Answers

I am pretty sure that Facebook php api recommends wrapping the calls to api inside the try/catch block.

Try it:

try {
 $user=$facebook->api('/me')
} catch (Exception $e){
 echo 'API error: '.$e->getMessage();
}

This may output some information about the cause of your error. If using php 5.3 or above I also recomment catch (\Exception $e) instead of catch (Exception $e)

share|improve this answer

Try this code instead

$token_url = 'https://graph.facebook.com/oauth/access_token?client_id='
                . 'YOUR_API_KEY' . '&redirect_uri=' . urlencode('YOUR_APP_URL')
                . '&client_secret=' . 'YOUR_APP_SECRETE';
        //. '&code=' . $code;
        $access_token = $facebook->getAccessToken();

// Run fql query
        $fql_query_url = 'https://graph.facebook.com/'     
                . $facebook->getUser()
                . '&' . $access_token;
        $fql_query_result = file_get_contents($fql_query_url);
        //$fql_query_result = $iframeadv->curl($fql_query_url);
        $fql_query_obj = json_decode($fql_query_result, true);
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.