我对这个 FQL 查询感到困惑:
SELECT type,attachment,message,permalink,created_time
FROM stream
WHERE
source_id = xxxxxx and
actor_id= xxxxxx and
type = 247
ORDER BY created_time DESC
LIMIT 46
它返回空。但是当我尝试这个时:
SELECT type,attachment,message,permalink,created_time
FROM stream
WHERE
source_id = xxxxxx and
actor_id= xxxxxx and
type = 247
ORDER BY created_time DESC
LIMIT 50
正如我所料,它返回 1 条记录。
是因为这个LIMIT
还是别的什么?如何显示用户的 15 个帖子?