如何使用facebook php SDK标记上传的照片中的朋友

问题描述:

我这样做是为了创建相册并将照片上传到用户的个人资料:

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?

是的,这是可能的,并在

Yes, it is possible and described in documentation