How can I tag friends in uploaded photo using facebook php SDK

断了今生、忘了曾经 提交于 2019-12-11 20:38:51

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!