I use this code:
$parameters['link'] = $_POST['link'];
$parameters['picture'] = $_POST['picture'];
$parameters['message'] = $_POST['message'];
$parameters['name'] = $_POST['name'];
$parameters['description'] = $_POST['description'];
$facebook->api('/me/feed', 'POST', $parameters);
The first times that i tried, i see the image, but now i can’t see nothing. I also tried change image name to avoid cache problem, but it doesn’t solve the problem.
Any idea?
What ID did you get back from
$facebook->api('/me/feed', 'POST', $parameters);? Use that ID in the graph to search for it.