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).
|
Whenever using the Facebook PHP SDK, especially when calling the API, I get an internal server error. For example, using |
|||||||||
|
|
I am pretty sure that Facebook php api recommends wrapping the calls to api inside the try/catch block. Try it:
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) |
|||
|
|
|
Try this code instead
|
|||
|
|