我正在使用Java开发Web应用程序。我需要访问我的朋友照片,并需要选择他被标记的照片。 (即)他的脸应该在那张照片中。
如何使用Facebook Api进行操作?我已经搜索并获得了几条SO帖子,用于拍摄此类link1 link2的朋友的个人资料照片,但我无法获取与访问朋友照片相关的任何信息并获取他们被标记的图片/朋友面孔可用。
有人可以帮我解决如何完成上述案件的问题吗?
答案 0 :(得分:1)
请参阅https://developers.facebook.com/docs/reference/fql/photo_tag/
要获取链接,您必须运行查询
select link from photo where object_id in
(select object_id from photo_tag where subject=me())
在courset而不是me()
,你必须写下你的朋友ID。
注意,
To read the photo_tag table you need the following permissions: User: user_photos permissions to access photo tag information that a user is tagged in. friends_photos permissions to access photo tag information that a friend is tagged in.
顺便说一下,您将收到标记此人的照片,但这些照片可能不包含任何人的真实图像。