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.

How do i upload a photo with tagging info using graph api ?

the php solution i found is at http://forum.developers.facebook.net/viewtopic.php?id=86152

$data = array(
                     'tag_uid' => $friend,
                     'x' => rand() % 100,
                     'y' => rand() % 100
                  );
$datatags[] = $data;
$attachment = array(
            'access_token' => $access_token,
            'tags' => $datatags
          );
$facebook->setFileUploadSupport(true);
$attachment['image'] ='@'.realpath($filename);
$photo = $facebook->api('/'.$aid.'/photos', 'POST', $attachment);

just need to know the syntax to add multiple tags.

thanks.

share|improve this question

1 Answer

You can set multiple tags by passing array of tag arrays like in this example: Uploading image and tagging multiple people in one step using PHP Facebook Graph API

share|improve this answer
thx andrius. do you have a sample for c# ? thanks. – khalil May 9 '11 at 3:44

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.