Facebook SDK for .NET and Graph API Explorer news feed mismatch

前端 未结 1 1184
离开以前
离开以前 2021-01-21 12:11

And application is using facebook sdk to get user newsfeed via client.Get(request_string) where request_string = \"/me/home\". And

1条回答
  •  后悔当初
    2021-01-21 13:02

    This is similar to this question.

    Some posts not visible on the feed through Graph API /me/home

    The reason is Facebook "scores" nodes to derive the most "Top Story". Low scoring nodes are by default not visible. You can force all nodes with

    /me/home.filter(owner)
    

    There is no documentation on WHY this actually works, but it does. You can also force all nodes that are Likes or Comments by doing the following

    me/posts?fields=likes.filter(stream),comments.filter(stream) 
    

    0 讨论(0)
提交回复
热议问题