I'm attempting to get all posts of my company page through a FQL query.
- Normal posts by others are returned ok (posts containing only text).
- Posts by the company itself that contains links is returned ok.
BUT:
- Posts by others then the company itself, that contains a link is not returned from the stream table.
Does anyone have any idea why?
My simple FQL query:
SELECT
post_id, type, actor_id, message
FROM stream
WHERE
source_id = 123
AND updated_time >= 123
ORDER BY updated_time
LIMIT 50 OFFSET 0