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.

This is driving me crazy and hoping someone can shed some light. I have a flash application and I want to be able to pull in a user's facebook profile image.

When I test the following code byt itself, either in the IDE or using the flash publish to html and viewing in a browser, it ALWAYS works

//CODE START
     function LoadFacebookImage(id:int):void {
        var loader:Loader = new Loader();
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
        loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
        loader.load(new URLRequest("https://graph.facebook.com/" + id + "/picture"));
    }

    function completeHandler(e:Event):void {
        trace('completeHandler and e.target==' + e.target);
        var ldr:LoaderInfo = e.target as LoaderInfo;
        var url:String;
        try {
            url = ldr.url;
            addChild(e.target.content); 
        } catch (e:Error) {
        }
    }

    function ioErrorHandler(event:IOErrorEvent):void {
        trace("ioErrorHandler: " + event);
    }

But in my application for some reason it doesn't. I get a Error #2036: Load Never Completed.

Also, if I paste the following directly in a browser

 https://graph.facebook.com/<id goes here>/picture?type=large

I get

 {
    "error": {
  "message": "A user access token is required to request this resource.",
  "type": "OAuthException"
  }

}

Can someone please explain why it works sometimes(my barebones test at top) and other times it doesn't??

share|improve this question
ok, fudging my code using this as reference stackoverflow.com/questions/5616577/… make progress...not getting errors returned but AM getting a large grey question mark icon in my flash instead of the image... – eco_bach Jan 4 '12 at 17:40
"question marks" images generally mean that user have not defined image or his image isn't public and cannot be viewed by anonymous users – Juicy Scripter Jan 4 '12 at 20:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.