我想通过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
有人可以指出如何获得最新的5个朋友的朋友。
source_id = friend_id工作正常,但它只适用于1位朋友
我在这里测试它。 https://developers.facebook.com/tools/explorer/
由于