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.

The following query will get all public posts about the word invested.

https:graph.facebook.com/search?q=invested&type=post&fields=id,type,message

however, only about half have type=status. The rest are links videos and pictures. Substituting type=status is invalid.

Field Expansion seems to offer a solution, but my first interpretation of it is incorrect.

https:graph.facebook.com/search?q=invested&type=post&fields=id,type(status),message

What is the correct way to get only the status messages?

Before you say it, I know I could just filter them on my end, but I'm looking into this solution because it would be faster.

share|improve this question

1 Answer

up vote 2 down vote accepted

I don't believe field expansion will work here. If there is a way to filter on a specific type of sub-field, using field expansion I haven't found it yet.

An FQL query of the stream table is the tool for the job with the mystery CONTAINS() operator. Status updates are type 46.

https://graph.facebook.com/fql?q=SELECT post_id, type, message FROM stream 
    WHERE CONTAINS('invested') AND type=46

If you wanted to get all posts that have a message, regardless of type, you could replace type=46 with strlen(message)>0

share|improve this answer
Thanks. I would have never discovered that. – user1552512 Oct 24 '12 at 23:52

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.