See the photo API reference here: https://developers.facebook.com/docs/reference/api/photo/#tags
From the docs, you can do it a few different ways, I'm showing you a couple below. Assuming that you have the PHOTO_ID of the photo you want to tag, the first method tags a single user, and gives an (x,y) of where their face is. Note that the (x,y) are not exact coordinates in the photo, but are instead percentage points.
Bundle params = new Bundle();
params.putString("to", "USER_ID");
params.putInt("x", 25);
params.putInt("y", 25);
Request tagRequest = new Request(session, "PHOTO_ID/tags", params, HttpMethod.POST, new Request.Callback() {
public void onCompleted(Response response) {
// Do something here
}
});
tagRequest.executeAsync();
Or you can tag many people at once like this (you can also construct a JSON object, and then pass the toString to the "tags" parameter).
Bundle params = new Bundle();
params.putString("tags", "[{\"tag_uid\": \"USER_ID_1\"},{\"tag_uid\": \"USER_ID_2\"}]");
Request tagRequest = new Request(session, "PHOTO_ID/tags", params, HttpMethod.POST, new Request.Callback() {
public void onCompleted(Response response) {
// Do something here
}
});
tagRequest.executeAsync();
Note that I did not test the above code, so you should only use this as a guide.