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