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 am trying to do facebook login to allow my home.php access using facebook. How do I implement it to the home.php?

function login(response, info){ if (response.authResponse) {

                var accessToken                                 =   response.authResponse.accessToken;

                userInfo.innerHTML                             = '<img src="https://graph.facebook.com/' + info.id + '/picture">' + info.name
                                                                 + "<br /> Your Access Token: " + accessToken;
                button.innerHTML                               = 'Logout';
                showLoader(false);
                document.getElementById('other').style.display = "block";

                return true;
            }
        }


                         //ONLY DISPLAY IF USER IS LOGGED IN
                    if(loggedin() || login(response, info)==true )  {
                    $firstname = getuserfield('firstname');
                    $surname = getuserfield('surname');
                    echo ' Welcome ' .$firstname. ' '.$surname, ', You are logged in!';


        ?>
share|improve this question

closed as not a real question by CBroe, casperOne Nov 8 '12 at 15:13

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

https://developers.facebook.com/blog/post/534/

is this what you are asking ?

Hope it helps

I use OAuth2.0 for my authentication purposes

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.