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!
|
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! |
|||
|
|
|
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:
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. |
|||
|
|
|
Put the API call in a try/catch statement...
|
|||
|
|