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.

If i get someone to login to my website/mobileApp using Facebook can I access his profile details? How?

share|improve this question
graphurl/me should give you the details. Plenty of examples on the net. Show some effort. – Subir Kumar Sao Feb 21 at 11:00

1 Answer

Yes, you could. You only have to hask for permitions:

For example, for Facebook, using jQuery you could do that:

1- Create a app at facebook devellopers and get his id (http://developers.facebook.com/).

2- Call the facebook Javascript SDK:

<div id="fb-root"></div>
<script src="//connect.facebook.net/en_US/all.js"></script>
<script>
   window.fbAsyncInit = function() {
      FB.init({
          appId: 'YOUR_APP_ID', 
          status: true, 
          cookie: true, 
          xfbml: true
      });
    };
</script>

3- Call the facebook login function:

<div id="myFbloginBt">Login with facebook</div>
<script>
$(document).ready(function(){
   $("#myFbloginBt").click(function(){
      loginFacebook();
   });
});


function loginFacebook(){

    FB.login(function(response) {
        if (response.authResponse){
            //Get logged user info
            FB.api('/me', function (response) {
                    alert(response.email);
            });
        }
        else{
            alert("Please accept the permissions");
        }
    }, { scope: 'email'});
}
</script>

Where scope are the thing that you whant to access and need permission. You could see all scope variables here: http://developers.facebook.com/docs/reference/login/#permissions

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.