.NET Newsletter Facebook SDK and Graph API

And the app uses facebook sdk to get users' news through client.Get(request_string)

where request_string = "/me/home<some_filters>"

. And I found that sdk and api exprorer return different results with the same query string. Why might this happen?

+2


source to share


1 answer


It is similar to this question.

Some messages that are not displayed in the channel via the Graph API / me / home

The reason is that the nodes "hammer" Facebook in order to get the "top story". The bottom counting nodes are not visible by default. You can force all nodes with



/me/home.filter(owner)<some_filters>

      

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

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

      

+2


source







All Articles