Using PHP and the Facebook OpenGraph API, I have figured a way to post images to my fan page wall from my website. However once in a while, images are uploaded to the page tagged as "highlighted" (the star icon) and I don't know how to get that done.
My question hence is how do I tag the photo as a highlight such that it stretches the image across the width of the timeline.
Here is the existing code ...
<?php
require_once 'facebook.php';
$facebook = new Facebook(array(
'appId' => 'AAAAAAAAAAA',
'secret' => 'BBBBBBBBBBB',
'fileUpload' => true
));
$access_token = 'AAAAAAAAAAAAAZZZZZZZZZZZEEEEEEEEEEE';
$params = array('access_token' => $access_token);
//The id of the fanpage
$fanpage = 'NNNNNNNNNNNN';
//The id of the album
//$album_id ='1234567890123';
$accounts = $facebook->api('/MY_USER_ID/accounts', 'GET', $params);
foreach($accounts['data'] as $account) {
if( $account['id'] == $fanpage || $account['name'] == $fanpage ){
$fanpage_token = $account['access_token'];
}
}
$facebook->setFileUploadSupport(true);
$album_id = "4567890123";
$tmpimg= $q. ".jpg";
$args = array(
'image' => '@' . $tmpimg,
'aid' => $album_id,
'no_story' => 1,
'access_token' => $fanpage_token
);
$photo = $facebook->api($album_id . '/photos', 'post', $args);
if (isset($photo['id']))
{
$message = "Random message";
$link = "https://www.facebook.com/photo.php?fbid=".$photo['id'];
$attachment = array
(
'access_token'=>$fanpage_token,
'type' => 'photo',
'message' => $message,
'link' => $link
);
$result = $facebook->api($fanpage.'/links/','post',$attachment);
}
?>