When posting to a Page directly on the site or via the Graph API, you can specify targeting to country , city , region and locale. When loading the /posts connection on the Page, every post is included. How can it be limited to a specific targeting?

1

There are 1 best solutions below

0
On

Ok, I found a solution using FQL stream. I'll put the answer here in case someone else needs it.

Example, selecting only post for Sweden:

fql?q=SELECT post_id, message, privacy FROM stream WHERE source_id=pageIdHere AND filter_key="owner" AND privacy.description = "Sweden"

Or posts for Spain:

fql?q=SELECT post_id, message, privacy FROM stream WHERE source_id=pageIdHere AND filter_key="owner" AND privacy.description = "Español, Español (España)"

https://developers.facebook.com/docs/reference/fql/stream/