Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
    }

    ?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.