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??