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.

Firefox and Internet Explorer both have settings where a user may enable forbidden cross-domain calls.

Is there a similar setting or option in Safari and/or Chrome?

share|improve this question

1 Answer

up vote 14 down vote accepted

Not sure about safari, but Chrome has a command line switch for this:

chrome.exe --disable-web-security

You can view a full list (as of when it was posted!) of command line options for chrome here.

share|improve this answer
+1 chrome works, unfortunatly safari doesn't – jAndy Apr 20 '10 at 14:20
2  
This is one of my biggest complaints about the webkit browsers - the 'all or nothing' security preferences. Is it that hard to write 'disable-web-security-for-trusted-domains'? – Peter Hanley May 18 '12 at 2:04
if you need authentication you would also need to use this parameter: --allow-cross-origin-auth-prompt otherwise it will fail as if web security is still enabled – keinabel Dec 21 '12 at 12:24

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.