I would like my application to post on the timeline a mosaic of 4 or 8 pictures as it is done with the "Photos" box (see an example below, I have hidden the photos as they are personal):
Using the Facebook API I can add a normal post to the timeline like this:
try
{
$ret_obj = $facebook->api('/me/feed', 'POST',
array(
'link' => 'www.freemages.fr',
'message' => 'Posting with the PHP SDK!'
));
echo "Post ID: ".$ret_obj["id"];
}
catch(FacebookApiException $e)
{
$login_url = $facebook->getLoginUrl( array(
'scope' => 'publish_stream'
));
echo "Veuillez vous <a href=\"".$login_url."\">identifier</a>";
error_log($e->getType());
error_log($e->getMessage());
}
However I dont see in the documentation if there is a way to do as explained. I don't really need to upload thumbnails of the pictures on the FB account, i just want to display them in a square format grouped by 4 per row on the timeline (for instance I could generate HTML code to create this layout but it does not seem possible).
Thanks for your tips!