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.

in my site i Login using facebook js sdk, ( I tried the example in facebook page), but how can i tell the server that this user is authenticated ?. I tried using ajax to post to the server . but this seems unsecure !.

My question is the authentication process can be donr using only JS sdk ?

If the authentication process cannot be done using Js , what about facebook c# sdk or other unofficial facebook c# sdk.

  FB.login(function(response) {
   if (response.authResponse) {
     console.log('Welcome!  Fetching your information.... ');
     FB.api('/me', function(response) {
       console.log('Good to see you, ' + response.name + '.');
       // POST TO SERVER AND TELL HIM THAT THE USER IS AUTHENTICATED NOW
     });
   } else {
     console.log('User cancelled login or did not fully authorize.');
   }
 });
share|improve this question
You can use the C# facebook SDK or the Facebook Serverside flow. Once you authenticate the user use formsauthentication – CrazyCoderz Jun 13 '12 at 19:29
2  
I asked exactly the same question here: stackoverflow.com/questions/10738068/… – njr101 Jun 14 '12 at 7:01
can I now why downvoting the question ? !! – Ahmad Jun 16 '12 at 6:51

1 Answer

The JS SDK can set a cookie on login, that you can read out server-side. If you do another call to /me there, then you can be relatively sure everything’s OK.

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.