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 am having the exact opposite problem that I find in many searches. The graph API result for the page feed I am grabbing is including posts that the page administrator has deleted from display on the page itself (via the standard FB user interface).

I want to display a feed of recent activity on the site, but the client does not want certain content associated with the brand, so they need to be able to police the feed. Is there any way to identify "deleted" wall posts and not display them from the feed results?

share|improve this question
Which one is deleted for example? – Michael Pryor Feb 20 '12 at 15:51
The first post, with "god damn" in it. ;D It does not display on the page (facebook.com/SkylineChili) but is in the feed. Looks like they also deleted the free coupons one. – Catherine OBrien-Sandrick Feb 20 '12 at 15:58
Are you sure the posts are deleted, and that they haven't just marked them as spam or changed the page wall to display posts by the page only? – Igy Feb 20 '12 at 16:23
I do know that posts by other users are showing on the wall, but I do not know what method they are using to remove them I will find out! – Catherine OBrien-Sandrick Feb 20 '12 at 17:02
1  
@CatherineOBrien-Sandrick Why don't you just make a page yourself to test it out. Create a post, view it in the graph api, then delete it in different ways and see what happens. Please post your answer when you find out. – Michael Pryor Feb 20 '12 at 19:11
show 1 more comment

1 Answer

up vote 2 down vote accepted

The FQL stream table contains wall posts and supports a boolean is_hidden column, so you could try a query like

select post_id,actor_id,message from stream where source_id=26920394576 and is_hidden=0

to see whether it omits the deleted posts.

Running the query now I see 1 post from "Free Coupons" which has been hidden, and another which hasn't - and it's the latter that appears on the Skyline Chili page.

You can execute FQL via the Graph API using /fql?q=select ....

share|improve this answer
THANK YOU! This worked. I actually used the FQL to create a "blacklist" and then tested the feed items against the blacklist, but it works! I got into this out of client request, but the FQL stuff is interesting...will have to learn more. – Catherine OBrien-Sandrick Feb 22 '12 at 19:16

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.