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.

how to get the user ID with FBJS & FBML ?

thanks a lot

share|improve this question
1  
We are not going to work for you. Did you read the docs? Do you have code? Did you actually try something? Downvote. – metrobalderas Nov 26 '10 at 21:12
yes i did ... but no hope – ra_htial Nov 26 '10 at 21:31
@metrobalderas .... code for what? i read the doc ... i read a lot but no hope !! i'm not asking for the code .. i'm asking for hints ... and thanks i don't want you to work for me !! – ra_htial Nov 26 '10 at 21:33
Why don't you post what you have actually tried? – metrobalderas Nov 29 '10 at 16:50

1 Answer

Use This: First define your constants and:

   $config = array(
            'appId'  => APP_ID,
            'secret' => APP_SECRET,
            'domain' => DOMAIN,
            'cookie' => true
                );
    $facebook = new Facebook($config);
    $uid = $facebook ->getUser();
    $me = $facebook ->api('/me');

Please see the facebook.php class for functions and arguments. Very good and detailed tutorials are here

share|improve this answer
but i'm working with static FBML and FBJS, can't use PHP in static FBML .. thanks a lot for your answer – ra_htial Nov 27 '10 at 3:29

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.