问题
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
来源:https://stackoverflow.com/questions/10166292/how-can-i-tag-friends-in-uploaded-photo-using-facebook-php-sdk