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?