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.

anyone know of a callback function I can call after I have done a FB api call using the PHP SDK?

If not, is there some way I can build one into the SDK?

Thanx in advance!

share|improve this question

2 Answers

up vote 6 down vote accepted

This isn't necessary, as all calls to the Facebook Graph API via the PHP SDK are synchronous. Therefore you can call any function directly after the call to the API, consider this example:

<?php

try {
    $result = $facebook->api("/me");
    do_something($result);
} catch (Exception $e) {
    // Log Error
}

Also the PHP-SDK is Open Source, so you could also fork it, implement your feature and file a Pull Request on Github with your changes. You can find the Source at https://github.com/facebook/php-sdk.

share|improve this answer

Put the API call in a try/catch statement...

try {
    $facebook->api(array(
        'query' => $query,
        'method' => 'fql.query'
    ));
} catch (FacebookApiException $e) {
    echo 'An error occured!';
}

// Assume it has worked as the exception has not been caught
echo "It worked!";
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.