Android facebook api get friend's life events

时光怂恿深爱的人放手 提交于 2020-03-06 07:10:27

问题


I can see friends life event's in facebook app, but i can't retrieve it from my app through /me/feed or /me/home or by FQL:

SELECT post_id, actor_id, target_id, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND is_hidden = 0

Is there any way(FQL or Graph API) to get friend's life events in my app?


回答1:


Friend permissions are deprecated, you cannot get any details of your friends anymore. See the changelog for more information: https://developers.facebook.com/docs/apps/changelog

FQL is deprecated too, btw. But it will still work in older Apps until 2016.

Also, life events are not available via the Graph API at all.



来源:https://stackoverflow.com/questions/28360875/android-facebook-api-get-friends-life-events

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