Kryštof Hilar
Kryštof Hilar

Reputation: 639

FB: How to get count of post according to date

I am trying to make some statistics and I need to get count of all posts(not only posts of friends) on facebook on specific day via GraphApi. Any help appriciated

Upvotes: 0

Views: 909

Answers (1)

Stéphane Bruckert
Stéphane Bruckert

Reputation: 22953

You can only search through public objects with the Graph API.

https://developers.facebook.com/docs/reference/api/search/

This is how you get all recent public posts:

https://graph.facebook.com/search?q=*&type=post

BUT!

The post search does not support limit/offset paging.

It means that you won't be able to search back through older posts for a given date using since and until.

Upvotes: 1

Related Questions