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.

Symptom: After connect popup window opens and user enters username + password. The popup turns blank and stays open.

There is no call to the login function (but a page refresh shows the cookies are set and user is actually logged in).

I debugged the code and found that the xdcommReceiver.js file is stuck in endless loop in the function dispatchMessage.

Further investigation shows that there is an exception happening in the line: func = hostWindow.FB.XdComm.Server.singleton.onReceiverLoaded;

The exception is "Permission denied for http://www.site.com to get property Window.FB from http://site.coml."

Can anyone suggest how to solve it?

additional info:

the site connect url is http://www.site.com/ the page it happens on is in the format : http://www.site/com/folder/folder2/

share|improve this question

5 Answers

This problem also happens when some javascript changes the domain. For example your page is in a.x.com. Then a script in the page does something like document.domain = "x.com";

your domain is changed and this problem shows up.

share|improve this answer
Thank you! This indeed causes problems. – Sam3k Jan 28 '11 at 20:48
up vote 1 down vote accepted

The solution was to add document.domain=site.com into xd_received.htm file (it is hidden somewhere in FB wiki documentation)

share|improve this answer

for those who have loop problem and uses the sample-code from Facebook API developer pages, I have a tip:

I had the same problem. What I did wrong was that when I modified script to my needs, I accidently replaced cookie with _cookie - this changed the variable "cookie: true" and made the infinite loop.

FB.init({appId: '<?= FACEBOOK_APP_ID ?>', status: true,     _cookie: true, xfbml: true});

The line should say:

FB.init({appId: '<?= FACEBOOK_APP_ID ?>', status: true,     cookie: true, xfbml: true});

Hope this helps some..

share|improve this answer

Try using xd_receiver file rather than making it available using script. Also make sure that your page is able to find xd_receiver file. To avoid any issues, you can specify full path to your xd_receiver file like so in your code:

www.yoursite.com/xd_receiver.htm

share|improve this answer

I posted this : http://forum.developers.facebook.com/viewtopic.php?pid=201495 some days ago, and this modification is the only method I found to make it work. By keeping the original xd_receiver.htm file, even by specifying full path, I just cant publish my website. If you see how I could configure anything (look at my post please) to make it work without modification, please tell me!

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.