I am having problem with redirect loop when trying to save facebook accessToken in session on the server. I've read various answered but all of them are patchy.
I am using Facebook Javascript SDK. When a user clicks on the login button and authorize the app, I want to save the accessToken in a Session var on the server so I can won't need to re-authenticate the user every time.
In my main.aspx page:
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
var form = document.createElement("form");
form.setAttribute("method", 'post');
form.setAttribute("action", '/FacebookLogin.ashx');
var field = document.createElement("input");
field.setAttribute("type", "hidden");
field.setAttribute("name", 'accessToken');
field.setAttribute("value", accessToken);
form.appendChild(field);
document.body.appendChild(form);
form.submit();
} else if (response.status === 'not_authorized') {
alert("not autohried");
} else {
// the user isn't logged in to Facebook.
alert("isn't logged in");
}
});
In my FacebookLogin.ashx:
<%@ WebHandler Language="C#" Class="FacebookLogin" %>
using System;
using System.Web;
public class FacebookLogin : IHttpHandler, System.Web.SessionState.IRequiresSessionState {
public void ProcessRequest (HttpContext context) {
var accessToken = context.Request["accessToken"];
context.Session["AccessToken"] = accessToken;
context.Response.Redirect("/main.aspx");
}
public bool IsReusable {
get {
return false;
}
}
}
The problem is that this code result in an infinite loop, with the form.submit() running over and over. As you can see, I redirect to the same page as I want it to be done. Is there an option to solve this infinite loop and still be able to save the accessToken to a session variable on the server?
Thanks in advance.