Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having the toughest time figuring this out... how can I get the user ID? While I relize the question sounds a bit retarded, I can't find this anywhere! This is my following top part of my code:

require '../fb_fc/facebook-php-sdk-9147097/src/facebook.php';
$appId     = 'APP_ID';
$appSecret = 'APP_SECERT';
$userId          = 'USER_ID?????';
$userAccessToken = 'ACCESS_TOKEN';

How can I get the user ID? I get the access token by using $GET_['access_token']; and this is the URL : http://friendsconnect.org/example.php?access_token=ACCESS_TOKEN_HERE#access_token=ACCESS_TOKEN_HERE&expires_in=0 (This is not a working link). How can I do this? I'm also new to this and am open to suggestions.

share|improve this question

1 Answer

up vote 3 down vote accepted

From: https://github.com/facebook/php-sdk The minimum code to get the user ID (assuming a cookie has been set or the access token already passed in) is:

require 'php-sdk/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => 'YOUR_APP_ID',
  'secret' => 'YOUR_APP_SECRET',
));

// Get User ID
$user = $facebook->getUser();
share|improve this answer
I'm getting the following error: Fatal error: Uncaught Exception: 601: Parser error: unexpected ')' at position 122. – John Doe Sep 25 '11 at 15:15
1  
That's a PHP Syntax error, not an API issue – Igy Sep 25 '11 at 16:58
Did this answer solve, or help you to solve the problem in your question? if so, please accept accept this answer or add your own answer with the solution you found. See these instructions for info how to accept answers; thanks! – Igy Jun 26 '12 at 12:53

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.