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 done a facebook application which upload photos into default application album. I found that after the upload, there will be a post displayed on user profile saying 'Smi added 10 new photos to the album xxxxx.'. Is it possible to edit the message above to 'Smi added 1 new photo to the album via xxxapplication'? I am using Graph api to upload the photo. The code I am using to upload is

$file = "@".realpath($image); 
$args = array(
    'message' => '',
    "access_token" => $access_token,
    "image" => $file
    );
$data = $facebook->api('/me/photos', 'post', $args);
share|improve this question

1 Answer

No you have no control over the activity feed message for items like that. The only items you will be able to control when uploading are photo captions, album titles, and tagged users.

share|improve this answer
Hi OffBySome, Thanks for the reply – Smi Jun 30 '11 at 4:12

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.