I have been trying to create a wall post in the end of facebook app. I have done this about fifty times till now, but suddenly, facebook places other content to the wall post instead of the one i set. I use the php sdk to do the wall post and the code is:
$facebook->api(
'/me/feed/',
'post',
array(
'access_token' => $access_token,
'message' => $message,
'name' => $name,
'caption' => $caption,
'description' => $description,
'link' => $my_url,
'picture' => $wall_post_image
)
);
access_token and all other variables are tested and valid. The weird thing is that the wall post is being done having the right link to the app, but the name is the page name | app name, the picture is app icon and the caption is the company page description
Any ideas why this is happening?