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.

In my mvc3 facebook application i detect user if login status = connected or let him to login by Facebook login popup.After login i save user Facebook id in session:

HttpContext.Current.Session["CurrentUserFacebookId"] = FacebookId;

The problem is in safari browser. The default settings of safari is to "block cookies from third parties and advertisers". So session is not saved and user can't use my application, because all actions check the session.How to solve this problem?Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

You can try to do this by setting the header with a simple P3P Policy

P3P: CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"

Or in PHP:

header('P3P: CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');

Or in ASP.NET:

HttpContext.Current.Response.AddHeader("p3p", "CP=\""IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""")

But I think after Safari 5.5.1 or so this trick doesn't work anymore. I think the only way in Safari 5.5.1 or later is to enable 3rd party cookies/sessions by setting "Block cookies" in Preferences -> Privacy to "Never".

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.