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.

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

share|improve this question

5 Answers

You may use the facebook sdk for this.

$session = $facebook->getSession();

$me = null;
// Session based API call.
if ($session) {
  try {
    $uid = $facebook->getUser();
    $me = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
  }
}

To see the complete example https://github.com/facebook/php-sdk/blob/master/examples/example.php

share|improve this answer
i 'dont know why i can't use getSession(); – phpNewbie May 20 '11 at 5:44
How should this help in the main question "will make my application very slow to load"?? Does php sdk work through magically speeded up internet? – zerkms May 20 '11 at 6:28
@zerkms You are right. it wont speed up application anyway. – Shameer May 20 '11 at 6:49
$facebook = new Facebook(array(
'appId'  => $APIappId,
'secret' => $APIsecret,
'cookie' => true
 ));
$facebook->api('/'.$uid);

Don't forget to include facebook.php at the top

share|improve this answer

Why dont you use Facebook PHP SDK to get the details. You can get the other basic information also without time consuming.

share|improve this answer
What would be changed with PHP SDK? Is it supposed to work faster? Obviously - not. – zerkms May 20 '11 at 3:42
you are correct, we diverted the question. The speed depends on facebook response – Ajay May 20 '11 at 8:59

You can speed this up by requesting less information like so (in PHP):

$me = $fb->api('me', array('fields' => 'username'));
$username = (isset($me['username'])) ? $me['username'] : '';

and in the JS SDK like so:

FB.api('me', {fields: 'username'}, function() { console.log(arguments); });
share|improve this answer

No. There's no way to speed it up.

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.