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.

The Safari on a Mac has a "Block cookies" set by default to "From third parties and advertisers".

It stops the SharedObject from working if the embeded swf is from a different domain.

This problem is not new: Safari 3rd party cookie iframe trick no longer working?

Has anyone found a solution ? (other then passing the Session ID through GET/POST params in every request )

share|improve this question

2 Answers

I can say from very recent experience that this is not a problem with Safari on a Mac, nor have I ever experienced it as a problem.

You mentioned the setting is blocking cookies from 3rd parties: SharedObject storage is never from a third party, it's from the site you're visiting (the 1st party?). So I don't think that will ever be an issue.

Using the Flash Player settings panel, the user can disable the SharedObject (or limit the amount of storage space). So in general, your app should handle the case where the SharedObject is not available.

However, I think most users are not aware of the SharedObject and that they can disable it.

share|improve this answer
I have just set the setting to Block Third party cookies ( Win7 Safari ) and SharedObject is not working as it should. I will get some traces and update this post soon. – san.chez Jul 24 '12 at 17:16
Interesting... that setting is not the default, though right? Also, another thing that will block access to the shared object is "private" or "incognito" browsing (where the browser keeps cookies only for that particular session). Chrome has an option for doing this. – Sunil D. Jul 24 '12 at 18:20
1  
I should have checked this in my own browser (Safari 5.1.7, Mac): In the Preferences, on the Privacy tab, the "Block cookies" setting is set to block cookies "from 3rd parties and advertisers". This is the default value (I don't think I've ever changed it). But in my case, accessing the SharedObject works just fine when blocking 3rd party cookies. – Sunil D. Jul 24 '12 at 18:25
I don't think that it is a default on Win7 Safari. – san.chez Jul 24 '12 at 18:29
1  
Yes, editing the question/topic is not a bad idea. It sounds like your alternate idea (to persist data through cookies) won't work either. The only other options coming to mind are to persist the data on a server, or detect the problem in code and inform the user the data cannot be saved. – Sunil D. Jul 24 '12 at 20:26
show 2 more comments
up vote 1 down vote accepted

Ok, found the solution which works

function setCookie()
{
   if (navigator.userAgent.indexOf('Safari') != -1 
        && navigator.userAgent.indexOf('Chrome') == -1
   {
      window.open('safari.php','','width=200,height=100');
   }
}

And then we set the cookie in safari.php

Source: http://www.reizbombardement.de/archives/safari-5-1-4-enforces-cookie-policy

share|improve this answer
1  
Won't this trigger the popup blocker because user did not click to initiate this? In addition you are opening a new window that will have nothing in it, to me this seems not an acceptable production solution. – Abadaba Aug 9 '12 at 20:08
1  
Currently, this is the only way I could make things work reliably. Very bad work-around because Safari also has the "pop-up windows" blocked. @Abadaba if you come across a better solution, please share. FYI: Facebook Apps – wenbert Aug 9 '12 at 22:54
Thanks, I got rid of my same problem :) – Vardan Gupta Nov 28 '12 at 10:54

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.