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

share|improve this question
2  
17 questions none accepted, please consider reviewing the answers that you were given in previous questions. Stack Overflow doesn't operate as a one way street you need to acknowledge those that help you. – phwd Jun 9 '12 at 14:46

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.