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'm trying to add the ability to share the product that you just purchased to my website using the Facebook C# SDK. To do this you need to authenticate the user with Facebook and get the required permissions.

I've got some code which checks if you're authenticated, if not, redirects you to the Facebook oAuth page to authenticate.

However, when the page returns from Facebook, it goes into a redirect loop:

var auth = new FacebookWebAuthorizer();

bool authorized = auth.FacebookWebRequest.IsAuthorized(new string[] { "publish_stream" });

if (authorized)
{

    var client = new FacebookClient(auth.FacebookWebRequest.AccessToken);

    Dictionary<string, object> args = new Dictionary<string, object>();

    args["message"] = "This is a test.";
    args["name"] = "";
    args["link"] = "http://www.example.com/";
    args["description"] = "Test link.";

    client.Post("/me/feed", args);

}
else
{

    var facebookClient = new FacebookOAuthClient();

    var parameters = new Dictionary<string, object> {
        { "redirect_uri", "http://www.example.com/" },
        { "client_id", "xxxx" },
        { "scope", "publish_stream" }
    };

    Response.Redirect(facebookClient.GetLoginUrl(parameters).ToString(), true);

}

My web.config looks like this:

<configuration>

    <configSections>
        <section name="facebookSettings" type="Facebook.FacebookConfigurationSection" />
    </configSections>

    <system.web>

        <customErrors mode="Off" />

        <compilation debug="true" targetFramework="4.0" />

    </system.web>

    <system.webServer>

        <modules runAllManagedModulesForAllRequests="true" />

        <handlers>
            <add name="facebookredirect.axd" verb="*" path="facebookredirect.axd" type="Facebook.Web.FacebookAppRedirectHttpHandler, Facebook.Web" />
        </handlers>

    </system.webServer>

    <facebookSettings appId="xxxx" appSecret="xxxx" />

</configuration>

It looks like my site isn't recognising that I'm already authenticated, so it redirects to the Facebook login. Facebook then knows that I'm authenticated, so it redirects me back, causing the loop.

share|improve this question
The link you provided doesn't offer a solution, just a description of the issue? – Scrooby Feb 16 '12 at 14:31

2 Answers

Loops like this are generally caused by a browser not liking to accept the thirdparty cookie. Try setting a P3P header in your webserver's response. See: http://www.hanselman.com/blog/TheImportanceOfP3PAndACompactPrivacyPolicy.aspx for more information. Happy Coding!

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:49

I developed some sample code available at http://aka.ms/need01 that doesn't use cookies at all. Basically, it uses a custom Authentication module I wrote (with session state stored in Windows Azure tables, but you can write one that uses another store) and stores the rest of its state in the URL. Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.