i 've found using file_get_contents like
json_decode(file_get_contents('http://graphdotfacebookdotcom/'.$uid));
will make my application very slow to load, are there any methods to retrieve the username of the facebook user?
thanks
|
|
|
You may use the facebook sdk for this.
To see the complete example https://github.com/facebook/php-sdk/blob/master/examples/example.php |
|||||||
|
Don't forget to include facebook.php at the top |
|||
|
|
|
Why dont you use Facebook PHP SDK to get the details. You can get the other basic information also without time consuming. |
|||
|
You can speed this up by requesting less information like so (in PHP):
and in the JS SDK like so:
|
|||
|
|