I saw this, which doesn't work and this, but the Graph API Documentation says:
/{page-id}/tagged shows the posts that this page was tagged in and the 'posts to page'
So that would lend me to think that any public posts that tag a particular page should show up as a response to this API call:
FB.api(
'/{page-id}/tagged',
{
access_token : "{fake-access-token}",
limit: 10
},
function(response) {
console.log(response);
}
);
(switching out the placeholders for actual data, of course)
But only the 'posts to page' are showing up, not the posts tagged by other users.
I'd be very grateful for some insite.