Facebook graph API: feeds missing in json response

后端 未结 3 1044
一生所求
一生所求 2020-12-08 08:36

I try to fetch user\'s feeds via graph api from my Android application. It generally works but some feeds that I can see on the wall are missing in the json response.

<
3条回答
  •  攒了一身酷
    2020-12-08 09:36

    Your approach is correct, I've seen the JSON and yes it's missing the second one, I think it's upload app form adroid, try checking the application settings for this app. Or If your trying to retrieve the wall FQL is a much better way

    SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id in (SELECT target_id FROM connection WHERE source_id= AND is_following=1) AND is_hidden = 0 
    

提交回复
热议问题