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.

According to Facebook's documentation, I put channelUrl: '//www.my-domain.com/fb_channel' inside FB.init(). However, I could not see www.my-domain.com/fb_channel got loaded at all with Firefox and Chrome's network inspector.

Is this normal?

share|improve this question

2 Answers

up vote 1 down vote accepted

It's perfectly normal. The reason you need the channelUrl is for cross-domain communication between your domain and FBs; it uses a nested IFRAME to communicate. However, in newer browsers you can use window.postMessage, which is more performant so the channelUrl is not used in those cases.

share|improve this answer

The contents of the channel file is a single line

<script src="//connect.facebook.net/en_US/all.js"></script>

So if there is something wrong, it's something in your server that is not loading the file properly.

share|improve this answer
I mean, the browser is not requesting www.my-domain.com/fb_channel at all. Not even related to the content in that URL. The code inside window.fbAsyncInit did run, so I can see //connect.facebook.net/en_US/all.js attached to DOM. – powerboy Jun 10 '12 at 2:38

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.