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.

I have a cache of pictures in my website, and I need to upload these photos to my Facebook fan page 4-5 times a day. My code creates an album and also uploads the photos to the album, however, these photos do not appear in the timeline.

So my question is, how do I upload photos to my fan page such that they appear on the timeline, on the wall. The language in use is PHP

Any help is greatly appreciated.

Thanks

Edit 1: Here is the code:

<?php   
require 'facebook.php';
$facebook = new Facebook(array(
    'appId'  => "AAAAAAAAAA",
    'secret' => "BBBBBBBBBB",
));

$fanpage_token = "ZZZZZZZZZZZZZZZZZZZZZZZZZZ";

$facebook->setFileUploadSupport(true);

//Create an album
$album_details = array(
        'message'=> 'test album',
        'name'=> 'album'
);
$create_album = $facebook->api('/PAGE_ID/albums', 'post', $album_details);

$album_uid = $create_album['id'];

echo $album_uid;

 $img = '7newx.jpg';
  $args = array(
   'message' => 'Random message',
   'image' => '@' . $img,
   'aid' => $album_uid,
   'no_story' => 1,
   'access_token' => $fanpage_token
  );

  $photo = $facebook->api($album_uid . '/photos', 'post', $args);

?>
share|improve this question
what are you using php-sdk or javascript-sdk..?? – Pankaj Feb 14 at 18:29
I'm using PHP-SDK. – Arun Nair Feb 14 at 18:38
Can you show the source code for your upload call? – Facebook Answers Feb 14 at 19:08
Edit 1: The current code. – Arun Nair Feb 14 at 19:28
Ok, have answered. Let us know if you are still stuck. – Facebook Answers Feb 14 at 22:35

1 Answer

up vote -1 down vote accepted

Ok, so I guess you tried removing the no_story and found that it didn't affect the timeline. Thats what I found too.

What you have to do is make another post, but this time, as a link. You need to use your array $photo, which was returned from your first post. If you examine that you should see it has a single element called ['id'], containing the id of your uploaded photo.

You need to turn that into a link that facebook would use to display. This is simple.

if (isset($photo['id']))
{
$message = "My latest photo";
$link = "https://www.facebook.com/photo.php?fbid=".$photo['id'];
$attachment = array
(
'access_token'=>$fanPageAccessToken,
'type' => 'photo',
'message' => $message,
'link' => $link 
);

$result = $facebook->api($fanPageId.'/links/','post',$attachment);
}

I am assuming you can work out what $fanPageAccessToken and $fanPageId are.

If you do that, you should get what you want.

share|improve this answer
Fantastic! this is what I wanted. Why didn't I think of it before? Thanks for the help. Can't upvote you because I'm barely a day old here (I guess I don't have enough credits to upvote). – Arun Nair Feb 15 at 5:54
You should be able to mark my answer as accepted. Don't worry if you can't though. I found it all a bit confusing at the start too! – Facebook Answers Feb 15 at 9:13
I have accepted the answer, thank you. – Arun Nair Feb 18 at 7:51
How do I tag an uploaded photo/post as highlighted. Here is the question ....stackoverflow.com/questions/14931950/… – Arun Nair Feb 19 at 19:44
Now why on Earth did my answer get downvoted? I had two answers that both got downvoted in quick succession. I must have offended somebody who doesn't like my quality solutions! – Facebook Answers Feb 22 at 19:02
show 1 more comment

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.