i am doing wall posts using the facebook php sdk along time ago now without any problem. Lately i noticed that when i set a picture in the parameters of the post, in timeline appears a thin light blue line on the left of the image. This line does not appear in news feed of friends though.
Anyone has any idea why this happens?
i put my code below for anyone that might want to see it:
$parameters = array(
'access_token' => $facebook->access_token,
'message' => $message,
'picture' => $picture,
'link' => $my_url,
'name' => $name,
'caption' => $caption,
'description' => $description
);
$result = $facebook->api(
'/me/feed/',
'post',
$parameters
);
postmethod just means you are posting data. Similarly you would usedeleteto delete items through the API. – Lix Nov 13 '12 at 11:35