I'm using facebook actionscript graph api to and I trying to upload a photo, I doing it
var _params:Object = new Object();
_params.access_token = initAuthResp.accessToken;
_params.url = "http://images2.wikia.nocookie.net/__cb20110104235703/simpsons/images/d/d7/Milhouse.jpg";
_params.message = "waca waca";
Facebook.api('photos', handleUploadComplete, _params, 'POST');
but when I run it I recieve this error
FAIL:
{"error":{"type":"OAuthException","code":324,"message":"(#324) Requires upload file"}}
I have seen that in PHP I have use 'fileUpload' => true in login
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => true,
'fileUpload' => true,
));
or use
$facebook->setFileUploadSupport(true);
Please any suggest? thanks