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.
&method=POSTto 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