私はこの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 件の投稿を表示するにはどうすればよいですか?