5

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.

Community
  • 1
  • 1
iain
  • 331
  • 3
  • 18
  • File a bug at https://developers.facebook.com/bugs – WizKid Jan 26 '15 at 22:14
  • 1
    After looking at the current bugs, it seems this issue has already been submitted: http://stackoverflow.com/questions/28159087/facebook-api-posts-that-a-page-was-tagged-in However, I think my description is somewhat more concise, so I've added a link to this post in the comments. – iain Jan 27 '15 at 01:24
  • Sorry, I just realized that I pasted the link to this page. Here's the link to the Facebook bug: https://developers.facebook.com/bugs/836100296416951/ – iain Jan 28 '15 at 16:54

0 Answers0