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 use this code to publish some swf movie on a user's wall on facebook:

$attachment = array(
    'name' => 'APP NAME',
    'description' => 'DESCRIPTION',
    'link'=>'https://apps.facebook.com/NAME/',
    'picture' => 'http://example.com/example.jpg',
    'source' => 'http://example.com/example.swf',
    'access_token' => 'ACCESS TOKEN'
);

$this->facebook->api('/USER_ID/feed', 'POST', $attachment);

I have used this code quite a lot of times and it works fine, but now it doesn't work for my new app. When I click the play button on facebook, I get the following error message...

There was a problem with the parameters of the request. Body of an error/warning message. Title is: Invalid Request

Trying to google for about an hour but no solution!

Any ideas?

share|improve this question
Where is that error message coming from? Is this the javascript API? PHP? That doesn't look like the usual format of Facebook's error messages – Igy Sep 25 '11 at 9:09
Did you solve it? – Sharon Haim Pour Nov 20 '11 at 12:51

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.