How can I tag friends in uploaded photo using face

2019-08-18 20:49发布

问题:

I'm doing this to create an album and upload a photo to user's profile:

$facebook->setFileUploadSupport(true);
$args = array('message' => $statusFinal);
$args['image'] = '@' . realpath($imagePath);
$data = $facebook->api('/me/photos', 'post', $args);

Is it possible to tag user friends? How can I do this?

回答1:

Yes, it is possible and described in documentation