Got a small problem over here. In the past it worked great, but since two weeks it stopped working properly. When I upload around 200 photos to my page through a php script facebook normally chose around 3 pictures to show on the wall of all the users that liked the page. But since 2 weeks it shows all the 200 photos on all the friends wall. This result in loosing likes because of the timeline spamming. The photos are first uploaded to our own servers and after that send to Facebook. Is there something changed on FB which I can't find out..? Beneath the cURL object (php array) that will be send to FB.
$photo_details = array(
'access_token' => $sPageAccesToken,
'message'=> $sName . ' | ' . strftime('%A %d %B %Y', $sDate) . ',
'image' => '@'. realpath($targetFile)
);
Thanks in advance!