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 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.

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.