I have a game in Facebook and suddenly a new problem came out. In Chrome, Safari, Opera and Internet Explorer work fine. In Firefox the Facebook page loads good but when the game iframe starts loading, it gets a points that automatically reload the whole page. I can not understand what’s happening. Anyone could know the issue?
Share
Well, it is good know problem for me, about half year ago I got the same also with Firefox. In my app real problem was that, firefox with his
AJAXaction, lost somewhere access token from parent window/frame…My advice: try to stick access token to
AJAX‘s request too.Edit in response to comment:
Unfortunatelly, now I can’t see any token in
urlinto my app frame… but what I did then was something like that: (usingjQuery):$.get("http://mydomain/getInfo?id=12345 + '&' + (location.href.split('?'))[1])where
location.href.split('?'))[1]add session/access token to my internAJAXrequest.Anyway, if application works fine few days ago, check official facebook dev forum, there is often some cause on facebook side…