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 working on a Facebook application and I can successfully get the user's info in JSON after authorizing. However, when I refresh the page, I'm redirected to Facebook for OAuth when I thought that the authorization had already taken place. I had understood that I only needed an access token, subsequently.

if (fbData != null)
    {
        if (fbData.user_id == null)
        {
            var redirURL = Request.Url.Scheme + "://" + fbAuthURL.Replace("[APPID]", appId).Replace("[REDIRECT]", (Request.Url.Scheme + "://" + canvasPage));
            Response.Write("<script type=\"text/javascript\"> " + Environment.NewLine +
                    "top.location.href=\"" + redirURL + "\";" + Environment.NewLine +
                    "</script>");
            Response.Write("Redirect URL for Authorization : " + redirURL);
        }
        else
        {
            if (isReady == true)
            {
                MyWebRequest userRequest = new MyWebRequest("https://graph.facebook.com/me?access_token=" + accessToken);
                string userInfo = userRequest.GetResponse();
                //Response.Write(userInfo);
                FBAuth fuser = new FBAuth();
                UserInfo oUser = fuser.GetUserInfo(userInfo);
}}}

How can I handle it?

share|improve this question
Are we supposed to be able to read that? You would get answers a lot faster with properly formatted code. A big blob of code is not enticing. – James Johnson Nov 9 '11 at 21:01
Since you're using C# to check the Oauth authentication, why not just do a response redirect in C# to authenticate and get the token back? – uadrive Nov 10 '11 at 0:14

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.