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.
是否有可能获取一个人在 Facebook 上另一个人的时间轴上发布的数据?
如果是,我该怎么做?我需要使用 FQL 查询吗?
这将为您提供其他人使用 FQL 在活动用户的时间线上发布的内容:
SELECT actor_id, created_time, message, attachment FROM stream WHERE source_id=me() AND actor_id != me()