Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Chrome (or any other webkit browser) throws a ton of these "Unsafe JavaScript attempt to access frame with URL..." when working with the Facebook API for example.

It doesn't interfere with actual operation, but it does make the javascript console basically unusable.

I'd like to know if there is a way to suppress these errors specifically in the console? Or if there are other solutions you guys can think of, I would really appreciate it.

Thanks.

share|improve this question
1  
Currently I'm using the workaround of just having the console tab set to show logs only. I'm looking for a solution that allows me to track errors (just not this one). – Neil Sarkar Jun 9 '10 at 21:45
it would be good to provide a sample of how you are using the API. there are lots of reasons why this could happen. – Kinlan Jun 10 '10 at 8:53
I know what you mean, but I'm pretty sure this happens with any facebook integration. For an example, open your webkit js console on this Domino's site (in production) pizzaholdouts.com – Neil Sarkar Jun 10 '10 at 18:00
1  
Aren't you simply trying cross-site scripting? Are you requesting facebook api addresses from your own server? Way is bit different. – Tomasz Durka Jul 21 '10 at 10:42
4  
not requesting anything, I just put in the boilerplate stuff to get the js sdk working developers.facebook.com/docs/reference/javascript – Neil Sarkar Jul 21 '10 at 14:20
show 3 more comments

5 Answers

up vote 18 down vote accepted

You could allow cross-domain requests during testing by running chrome with the --disable-web-security command line option. This should probably get rid of the error (and allow FB to spy on your testing ;)

share|improve this answer
hmm that's intriguing...is there a way to set the option that way aside from the command line? I tried this from the command line: /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --disable-web-security and it seemed to work! but it said it wasn't able to load my profile...any idea how to set that flag from within the app, or set it to default to that? – Neil Sarkar Jul 28 '10 at 22:50
4  
as an update, I'm now using chrome exclusively, and I still would love to know the answer to this – Neil Sarkar Feb 18 '11 at 20:22
2  
open -a '/Applications/Google Chrome Canary.app' --args --disable-web-security – sandstrom Oct 4 '12 at 15:00

This happens when a source from an different domain is loaded and tries to access the document.cookie. It happens with head sources (script tags) as well with iframe documents which try to access the document.cookie for some reason.

share|improve this answer

Since we can't blame the people from Google for constructing such a safe browser, I think the best solution is to use Facebook's server-side solutions (e.g. PHP SDK), it'll save you a lot, lot, lot, lot, lot of headache. The only advantage I see in using the FB javascript SDK is the popup login which you can do yourself using javascript/jQuery.

share|improve this answer
5  
Why will using the PHP SDK (or other server side SDK) save a lot of headache? – Steve Horn Aug 28 '11 at 17:11
@steve: The mere fact that Chrome is blocking the unsafe request answers a lot regarding how insecure client-side processing is. – Jhourlad Estrella Sep 28 '11 at 8:31
1  
IMHO pollution of the JS console should not be a primary consideration in deciding whether to put logic server-side or client side. – Zach L Mar 15 at 17:58
@zach: why is that? – Jhourlad Estrella Mar 18 at 3:13
Performance, Security, Code Organization / Maintainability, portability - all things I'd consider first. stackoverflow.com/questions/1516852/… – Zach L Mar 28 at 14:28

These errors can be thrown if, when you register the app with facebook, you don't have a trailing slash in the Site URL field.

share|improve this answer
Could you please clarify your sentence to me? – itinance Apr 13 at 9:39
Think he means inside developers.facebook.com/apps – Zach L 2 days ago

Whats the problem?

Tons of Unsafe JavaScript attempt to access frame with URL... error messages in the Chrome JS console.

As @thechrisproject points out, these errors are caused by many reputable 3rd party api's and widgets, including but not limited to:

  • The Facebook JS SDK
  • Vimeo Iframe Embed
  • Google Maps Iframe Embed

My understanding on the why: (please correct me if I'm wrong)

Chrome has stricter security settings and/or shows more such errors than competing browsers. API/widget/embed authors attempt to do things (cross-domain/frame) that will not work in all browsers (probably for their own reporting/analytics) but that don't actually effect the usuabilty of their widget if it doesn't work (just causes a lot of annoying errors)

Quick Answer

NO, you cannot (just) suppress these errors in the chrome console.

Solutions?

  • Deal with it. These errors do not actually break these 3rd party apis and widgets, they just make the console much more difficult to use
  • you can set the console to log only Warnings, Logs, or Debug messages. This will hide ALL errors.
  • you can use another browser
  • As @Dagg_Nabbit. pointed out, you can allow cross-domain requests by running chrome with the --disable-web-security command line option. More information here: Chrome: Disable same origin policy. Note that this setting will negatively effect the security of your browser. I have 2 chrome shortcuts so I can open it with or without this flag.
share|improve this answer
Would be nice if the down-voter provided some feedback. I'd love to know if my answer is somehow wrong or incomplete. – Zach L Jun 10 at 21:22

protected by Community Aug 3 '11 at 21:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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