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 have domain with 36 thousand photos in it. I want to see lastest comments. I'm very lazy to check every page, so I tried

SELECT post_fbid, fromid, object_id, text, time 
 FROM comment 
 WHERE object_id IN 
  (SELECT comments_fbid 
   FROM link_stat 
   WHERE url like 'http://fotograf.web.tr')

Take a closer look to last line. There is like, fql dont accept like.

Can you help me with this?

share|improve this question

1 Answer

Presumably you already have a list of pages on your domain, why not put those in an 'IN' clause in the query?

share|improve this answer

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.