We have a facebook app and our app uses facebook app request dialog very frequently. Most of the time it works pretty well without any error and hick ups, but sometime the FB.ui dialog just keeps on loading and doesn't show the request that it needs to send. When such condition occurs wherever the FB.ui dialog is used, it behaves the same and it just keeps on loading. Interesting thing is that after few hours it starts to work correctly itself (without making any changes)
Each of our team member has a web application server running on their local machine and we all use the same facebook app id. Whenever the scenario occurs, it is visible on each development machine.
Has anybody scene such problem ?
I can confirm that the problem is the port. On port 80 it works, on port 8080 (which we use for development, localhost:8080 but also stagingserver:8080) FB dialogs does not work anymore. Got no idea why.
If you are using to parameter to pass the list of friends. Just don't pass more then 25 friend ids for example.
This happens to me when passing 50 friends to apprequest dialog. When passing 25 it works fine.
Not sure what is the magic number, tried 26 and still works.
I got an idea to try to lower number of friends because of the IE6/IE7 25 friends per request limitation.
Yes, I am experiencing the same bug. The Facebook developers don't seem to test their own code. They keep introducing new bugs in the production environment EVERY day!! You never know when things work.
http://www.lazerwire.com
Finally we are able to find a solution for this problem. Following are the the points we pen down to work on:
we made changes in the setting of our server and moved it to port 80 from 8080 and everything started to work perfectly.
I don't understand how come the port number on server can cause problem for javascript code.
But the good news is after spending complete one day on this bug we are back on development track.