Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm admin of a Facebook Page and i'm trying to get by API or FQL, contents posted on private streams wall mentioning my page. If i try

SELECT type,target_id, post_id, message, actor_id, tagged_ids FROM stream WHERE source_id=PAGEID

i will get only: my posts(or page's) on the page wall, posts by a user on the pages wall, but i can't see posts by a user on their own wall that tags the page. *Every user that visit my page can see them, so they should be accessible* by some API...but i can't understand how.

Thanks

share|improve this question

1 Answer

You should be able to get this information by querying the stream_tag table, but in my tests I can't get it to return any data.

If the posts are visible on your page, you should be able to get at the posts mentioning you with this query:

SELECT type, target_id, post_id, message, actor_id, tagged_ids 
    FROM stream WHERE source_id =PAGEID AND actor_id !=PAGEID
share|improve this answer
the examples given on developers.facebook.com/docs/reference/fql/stream_tag returned empty data too – gioolio May 8 '12 at 14:47
looks like stream_tag api work if you use users id as parameters and not with pages id – gioolio May 8 '12 at 14:54
cpilko solution works with posts written on Page wall but there's no trace of posts with a tag to my page written in user's wall – gioolio May 8 '12 at 15:09
Yes, this won't get all tagged posts, justs posts made by others on your page's timeline. To get posts on other's pages where you are tagged, you need to query stream_tag to get that. I can't get stream_tag queries to work on a user object either. – cpilko May 8 '12 at 15:18
graph.facebook.com/fql?q=SELECT post_id,actor_id FROM stream_tag WHERE target_id=me() try this with permissions, should work – gioolio May 8 '12 at 15:27
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.