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 follow this tutorial to integrated facebook : http://25labs.com/tutorial-integrate-facebook-connect-to-your-website-using-php-sdk-v-3-x-x-which-uses-graph-api/

My script is

        $app_id     = "xxxx";
        $app_secret = "xxxxxxx";
        $site_url   = "http://site.com/auth/facebook";

        include_once "src/facebook.php";

        $facebook = new Facebook(array(
            'appId'     => $app_id,
            'secret'    => $app_secret,
            ));

         $user = $facebook->getUser();

        if($user){
            // Get logout URL
            $logoutUrl = $facebook->getLogoutUrl(array(
                'next'  => 'http://site.com/enter',
 // URL to which to redirect the user after logging out
                ));
        }else{
            // Get login URL
            $loginUrl = $facebook->getLoginUrl(array(
                'scope'     => 'user_about_me,user_hometown,email,offline_access',
 // Permissions to request from the user
                'redirect_uri'  => 'http://site.com',
 // URL to redirect the user to once the login/authorization process is complete.
                ));

    echo '<a href="'.$loginUrl.'">login</a>';
    }

Since i'm not log in i see the login link,now when i click it is redirecting me to the page that i choice but when i go back and use print_r($user_info); i dont get anything and again i see the login link .. so i'm doing wrong

This is what i get after clicking the enter link

http://site.net/home?state=a074b46878d90ff3ebf5c02049c077e6&code=AQDCOhwA9h1qGOHntZCxBbeUUBmA3zXzjhum8zhTqWfE_6V17F-MpD91anIEgGNGV7eLge8H61nz53S6SlkzZ70Zcbi_uJKeD9uMFiaIrobaYS-dapz-m2pKlPk9kGVDaxUf80C7nIyh3-lUzgCNY2H6Cw4Zh2UoB0raRnyrDngSSn7H9z6mCTRRW-CbcH_bpKs#=

share|improve this question
had you changed the value of the redirect_url/callback url as per your requirements in your php script and in your facebook app? – Peeyush Apr 22 '12 at 17:52
yes I changed them – Even Johnson Apr 22 '12 at 17:54
ok then code looks fine.Probably you are doing some simple small mistake in whole process of making fb sdk work – Peeyush Apr 22 '12 at 18:05
Check the updated question :) – Even Johnson Apr 22 '12 at 18:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.