我梳理了Facebook文档,但没有看到一个明显的方法只返回用户新闻源上的照片。具体做法是:
提供FB访问令牌,我希望将新闻源过滤为仅发布的照片。
https://graph.facebook.com/me/home?access_token=
返回整个新闻源。我看到元素有一个“Type”属性,当它是一张照片时,它的值为“photo”。
如何将响应范围仅限于返回照片?
答案 0 :(得分:5)
当然,您可以使用FQL执行此操作:
SELECT
post_id, message, attachment
FROM
stream
WHERE
filter_key
IN (
SELECT
filter_key
FROM
stream_filter
WHERE
uid = me()
AND
name = "Photos"
)
使用Graph API Explorer进行演示:
https://developers.facebook.com/tools/explorer?method=GET&path=fql%3Fq%3DSELECT%20post_id%2C%20message%2C%20attachment%20FROM%20stream%20WHERE%20filter_key%20IN%20(SELECT%20filter_key%20FROM%20stream_filter%20WHERE%20uid%3Dme()%20AND%20name%3D%22Photos%22)
修改强>
看起来该链接无效。这是对图api的请求。您需要read_stream
权限。
https://graph.facebook.com/fql?q=SELECT post_id, message, attachment FROM stream WHERE filter_key IN (SELECT filter_key FROM stream_filter WHERE uid=me() AND name="Photos")
答案 1 :(得分:2)
Facebook已向/me/home endpoint
添加了过滤参数,因此,如果您查询/me/home?filter=photos
,则只能获得用户News Feed
的照片