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.

Weird stuff going on here:

fql?q=SELECT post_id, updated_time, created_time, message 
FROM stream WHERE source_id = 8576093908 AND updated_time > 1330761040 
-> no data

but:

fql?q=SELECT post_id, updated_time, created_time, message 
from stream where post_id = '8576093908_10150645788623909'
-> {
  "data": [
    {
      "post_id": "8576093908_10150645788623909",
      "updated_time": 1330761042,
      "created_time": 1330624006,
      "message": "...."
    }
  ]
}

So, the actual post says: Yup, I was updated 1330761042 But when you want to see the post using the stream, it won't work -> no data

Anybody has an idea?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.