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 use this codes , but I get an error

Fatal error: Uncaught OAuthException: (#121) Invalid photo id thrown in /home/a283357/public_html/app/base_facebook.php on line 1106

MY codes are for tags

$data = array(array('tag_uid' => $friends, 'x' => rand() % 100, 'y' => rand() % 100 ));
$data = json_encode($data);
//, 'tags' => $data,


$photo_details = array( 'message'=> 'message ', 'tags' => $data, 'image' => '@' . realpath($file) );
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);

And I want to tags 5 or 10 friends

share|improve this question

1 Answer

You cannot specify the tags for photo while creating it. Also you using wrong names for parameters used in create photo method.

You should create the photo first and then tag it.

Create photo:

$photo_details = array(
  'message'=> 'message ',
  'source' => '@' . realpath($file)
);
$uploaded_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);

Now tag it:

$tags = array(
  array('tag_uid' => $friend_id, 'x' => rand() % 100, 'y' => rand() % 100 )
);
$photo_id = $uploaded_photo['id'];
$facebook->api('/'.$photo_id.'/tags', 'post', array('tags'=>$tags));

BEWARE, documentation states to parameter as one to specify the tagged user, but it's not (it's tag_uid as in your initial sample).

share|improve this answer
I get this error Fatal error: Uncaught OAuthException: (#803) Some of the aliases you requested do not exist: Array thrown in /home/a283357/public_html/app/base_facebook.php on line 1106 – Ai Bossi Apr 11 '12 at 15:21
@AiBossi, there was a mistake in code sample that should be fixed now. – Juicy Scripter Apr 11 '12 at 15:53
again error Fatal error: Uncaught OAuthException: (#100) Invalid keys "to" were found in param "tags". thrown in /home/a283357/public_html/app/base_facebook.php on line 1106 – Ai Bossi Apr 11 '12 at 16:07
@AiBossi, I've updated my answer with corrected sample and notes about naming... – Juicy Scripter Apr 11 '12 at 17:00
Again show Fatal error: Uncaught OAuthException: (#121) Invalid photo id thrown in /home/a283357/public_html/app/base_facebook.php on line 1106 – Ai Bossi Apr 14 '12 at 15:12
show 6 more comments

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.