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.

I came across this weird bug in the facebook.com page where the AJAX loaded parts (or however you call the technique facebook uses) didn't load (e.g. the chat, the notifications etc.).

When I fired up the developer's console, it gave me this JavaScript error:

Unsafe JavaScript attempt to access frame with URL 
https://www.facebook.com/ai.php[*] from frame with URL 
https://www.facebook.com/. 
Domains, protocols and ports must match.

*stripped quite a long base64-esque part - I think that's login data so I won't publish that.

I tried googling it and I came across several similar problems, so I dug in some more not to double post, but the other's errors where thrown when they were using the API of facebook via some kind of app. I don't do that, I just use Chrome 20.0.1132.47 (Mac) to visit the facebook.com page.

The error was explained on the other posts as a security measure by Chrome (and apparently Safari, too) to prevent some cookies inside a frame to be saved outside the frame. Preventing XSS and whatnot.

THE POSTS I FOUND:

Facebook gives "Unsafe JavaScript attempt to access frame with URL" error in Chrome

Unsafe JavaScript attempt to access frame when using secure browsing on facebook

The channel file and CDN

tl;dr:

facebook call in Chrome 20 (mac) gives error usually only given on js API calles (security measure against xss)

share|improve this question
I am unclear what the question is. Are you using the FB JS SDK? – Douglas Purdy Jul 30 '12 at 0:27
Douglas: no, I'm using just the browser without further additional SDKs, APIs or anything. – Asmodiel Jul 30 '12 at 6:25
So you are not having a real programming question, but a problem with the site facebook.com? Then you should report the problem to them. – CBroe Jul 30 '12 at 8:42

1 Answer

This is a common error if the protocols don't match. Make sure that if you are accessing the page using HTTPS, that your code has the correct HTTPS includes for JavaScript / CSS / images etc. Make sure the channel.html file is loaded using HTTPS (or make it protocol independent).

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.