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 am using this code to tag a user on a photo using the Facebook Graph API:

   $post_url = "https://graph.facebook.com/".$ret_obj['id']."/tags/".$friendID."?access_token=".$access_token."&x=0&y=0&method=POST"; 
   $response = file_get_contents($post_url);

It works perfectly but I need to tag two users at once but can't find the right syntax to do it.

I tried using /tags/UserID1/UserID2 but it is not working.

share|improve this question
1  
Making two POSTs should be an option AFAIK. – Jan Dvorak Jan 4 at 10:50
I don't think adding &method=POST to the URL makes it a POST request (but I've seen so much undocumented PHP magic I'm not really sure) – Jan Dvorak Jan 4 at 10:52
indeed, it works with a second POST... thanks – Arnaud Ad Jan 4 at 11:18

closed as not a real question by CBroe, Anders R. Bystrup, Linger, Pulkit Goyal, Graviton Jan 5 at 9:30

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can add the multiple tags in the parameters list as-

$args = array(
  ...
  ... 
  'tags' => array(
                 array('tag_uid' => USER_ID, 'x' => 20, 'y' => 40),
                 array('tag_uid' => USER_ID, 'x' => 20, 'y' => 40))  
);

Then simply call the required API by supplying this parameters list.

share|improve this answer

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