Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种解决方案,我可以在其中为用户添加最后 10 个朋友。是否可以通过。FQL 或 Graph API 还是不可能的?
表friends/端点不会公开您和其他用户开始友谊的时间。所以你不能直接得到这些信息。
friends
您可以做的最好的事情是查询stream表中的朋友公告。
stream
SELECT description, description_tags, created_time FROM stream WHERE source_id = me() AND type = 8 LIMIT 100
在我的例子中,这个查询返回了 3 个结果,即使我请求了LIMIT100 个。
LIMIT