友達の投稿をupdated_time順に取得したいのですが、source = first_friend_idを使用すると、このクエリは単一の友達に対しては正常に機能しますが、このクエリを使用すると空のデータが返されます。
SELECT post_id,type,message, actor_id,likes.user_likes,likes.count,likes.friends,comments.comment_list, comments.count , target_id ,updated_time,created_time FROM stream WHERE source_id in(friend_id1,friend_id2,friend_id3) ORDER BY updated_time DESC LIMIT 5
誰か 3 人の友達の最新の 5 つのフィードを取得する方法を教えてください。
source_id = friend_id は正常に機能しますが、1 人のフレンドに対してのみ機能します
ここでテストしています。 https://developers.facebook.com/tools/explorer/
ありがとう