Is it possible to pass a targeting query to the graph api when requesting facebook posts? If so, how should this be done ?
I found this question:
How to specify location targeting of FB post via Graph API
And this one
Geotargeting Page Posts with the Facebook API
But it doesn't seem to work, I've been trying the following in the graph explorer. And a lot more permutations as well.
PAGE_ID/posts?fields=targeting({'countries' : ['DE'] })
PAGE_ID/posts?fields=targeting("{'countries' : ['DE'] }")
PAGE_ID/posts?targeting={'countries' : ['DE'] }
PAGE_ID/posts?targeting={countries : ['DE'] }
PAGE_ID/posts?targeting="{'countries' : ['DE'] }"
PAGE_ID/posts?targeting="{countries : ['DE'] }"
With all these queries I keep just getting non filtered results or errors.
Is there a correct way to do it, and is there maybe any documentation anywhere ?