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?