문제

select post_id, message from stream where source_id IN (..., ..., ...) LIMIT 500

I'm using this fql query but it is returning just few posts. While the below query is returning more than 200 posts.

select post_id, message from stream where source_id = ... LIMIT 500

but giving same id with other id is returning 4 to 5 posts.

I know fql support is not available in v2.0 but still I want to do this using fql.

도움이 되었습니까?

해결책

This seems strange... Have you tried doing this via pure Graph API? What kind of objects are you using as source_ids?

GET /?ids={object_id_1},{object_id_2},{object_id_3}&fields=feed.fields(id,message).limit(100)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top