Open GoogleCodeExporter opened 8 years ago
This could be a temporary bug on Facebook's side. Is this still happening?
Original comment by rovertn...@gmail.com
on 11 May 2011 at 3:43
Yes It's still happening.
I am in the hell with it now.
:|
Original comment by zkid...@gmail.com
on 16 May 2011 at 4:01
This is not related to this SDK. The issue had been happening to me for about
5 weeks. I just updated my LoaderContext to the following:
var context:LoaderContext = new LoaderContext();
context.checkPolicyFile = true;
context.securityDomain = SecurityDomain.currentDomain;
context.applicationDomain = ApplicationDomain.currentDomain;
then pass that into your loader.load() function as the 2nd argument:
loader.load(new URLRequest(url), context);
You will need to import the following:
import flash.system.LoaderContext;
import flash.system.SecurityDomain;
import flash.system.ApplicationDomain;
Hope that helps.
Original comment by jzed...@ricochetlabs.com
on 16 May 2011 at 4:08
jzed...@ricochetlabs.com, how would that help? I think the error is related to
the api because the connection url is a graph call.
tkc5787, is this still happening for you? If so can you provide some more
source code please.
Original comment by rovertn...@gmail.com
on 27 May 2011 at 8:12
If you're still having trouble loading the crossdomain file (i have no idea why
it wouldn't, since its supposed to be automatically loaded whenever flash
player makes a url request to another domain), maybe try explicitly loading it
Security.loadPolicyFile("https://graph.facebook.com/crossdomain.xml");
at the beginning of your code.
It could be timing out when trying to load the policy file.
Original comment by rovertn...@gmail.com
on 27 May 2011 at 9:03
Original issue reported on code.google.com by
tkc5787@gmail.com
on 11 May 2011 at 2:21