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 using the FB JS API to display the oauth dialog on my site, basically doing something like this:

FB.init(...);
$("#fbButton").click(function(){
  FB.login(function (response) {
    if (response.authResponse) {
      window.location.href = myControllerUrl;
    }
  }, {scope: myPermissions});
});

Then on my controller I had an actionmethod like this:

ActionResult FacebookLogin()
{
  if (FacebookWebContext.Current.IsAuthenticated())
  {
    ...
  }
}

Now, I want to change this to display the Facebook authorization in the same browser window instead of using a popup (basically what Pinterest does).

So what I tried to do was replace the javascript code from above with this:

    var url = 'https://www.facebook.com/dialog/oauth/?';
    url += 'client_id=' + myAppId;
    url += '&response_type=token';
    url += '&scope=' + myPermissions;
    url += '&redirect_uri=' + myControllerUrl;
    document.location = url;

Which apparently behaves as I expect it: Redirects the user to the FB authentication dialog, the user logs into facebook, authorizes the app and then my action method in my controller is called. The only problem is that the call to FacebookWebContext.Current.IsAuthenticated() is returning false. I tried to find the authentication token in my controller but the request doesn't have any cookies and the querystring is empty.

What am I missing here?

share|improve this question

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.