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.

I making a game leaderboard on facebook. I'm not using connect but working inside the canvas. When I try to load the images from facebook it gives me the following error.

SecurityError: Error #2122: Security sandbox violation: Loader.content: http://test cannot access http://profile.ak.fbcdn.net/v22941/254/15/q652310588_2173.jpg A policy file is required, but the checkPolicyFile flag was not set when this media was loaded.

Here is my loader code

    public var preLoader:Loader;
    preLoader=new Loader();
        **update**
        Security.loadPolicyFile('http://api.facebook.com/crossdomain.xml');
        Security.allowDomain('http://profile.ak.fbcdn.net');
        Security.allowInsecureDomain('http://profile.ak.fbcdn.net');
                    **update-end**


        public function imageContainer(Imagewidth:Number,Imageheight:Number,url:String,path:String) {
        preLoader=new Loader();

        Security.loadPolicyFile("http://api.facebook.com/crossdomain.xml");
        var context:LoaderContext = new LoaderContext();
        context.checkPolicyFile = true;
        context.applicationDomain = ApplicationDomain.currentDomain;

        preLoader.load(new URLRequest(path),context);

Any Ideas? I am importing the right class though.

UPDATE: I am loading the images from a different domain say , calling func http://fahim.com images are from http://profile.ak.fbcdn.net/v22941/254/15/q652310588_2173.jpg something ( I have made sure the pictures are static do not require a facebook login or anything , they are just user public profile pictures)

share|improve this question
Did you delete your last post? – sberry Jan 21 '10 at 21:00
If you are loading from facebook, then why are you loading policy file from felinefrenzy.com? – Amarghosh Jan 22 '10 at 4:25
@Amarghosh, I'm sorry I did not update that there. In my original code I'm using facebook crossdomain. I just updated that. It still gives me the exact same error. @sberry2A, Yes I needed to change the name and I was using different URL's now an dthe facebook mention and so forth. Though all the changes still give me the same error. – Fahim Akhter Jan 22 '10 at 7:06
Are you certain about this line too context.checkPolicyFile = true;? Is that part of the original code itself? The policy file at the said location seems to be okay. – Amarghosh Jan 22 '10 at 13:49
got it working, the facebook policy file for images is somewhere else and I turned everything else to "*" – Fahim Akhter Jan 22 '10 at 14:47

3 Answers

This is the url to the image policy file:

Security.loadPolicyFile('https://fbcdn-profile-a.akamaihd.net/crossdomain.xml');

With this line everything should work just fine.

share|improve this answer
4  
You must be a lot of fun at parties. – Fahim Akhter Mar 29 '12 at 9:16
var loaderContext:LoaderContext;
loaderContext= new LoaderContext();
loaderContext.securityDomain=SecurityDomain.currentDomain;
loaderContext.checkPolicyFile = true;

..then pass loaderContext when calling load()

share|improve this answer

got it working, the facebook policy file for images is somewhere else and I turned everything else to "*"

Thanks for the help everyone.

Security.loadPolicyFile('https://fbcdn-profile-a.akamaihd.net/crossdomain.xml');

share|improve this answer
1  
what is the url of Facebook policy file for images?? – Muhammad Irfan May 8 '11 at 10:57

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.