I'm trying to post a link with Facebook PHP as in the example in https://developers.facebook.com/docs/reference/php/facebook-api/. I've written this code:
$ret_obj = $facebook->api('/' . $idFacebook . '/feed', 'POST',
array(
'link' => $enlace,
'message' => $mensaje,
'name' => $nombreAplicacion,
'caption' => 'Juega en ' . $nombreAplicacion,
'description' => '...',
'picture' => '...',
'type' => 'link',
'application' => array(
'name' => $nombreAplicacion,
'id' => AppInfo::appID() )
));
The problem is that the link which is posted is the link to my application insted of $mensaje. Is that a constraint or am I doing something wrong?
Thanks in advance.
$mensajewhen youechoit? – Matt Aug 20 '12 at 20:59