本文介绍了如何使用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
这篇关于如何使用facebook php SDK标记上传的照片中的朋友的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!