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.
如何在getstream中获取我关注的用户或关注我的用户。
假设很少有用户关注我,我怎么知道谁在关注我。
您可以通过调用方法获得关注者followers()。feed.followers()获取所有关注者,对结果进行分页,您可以提供limit并index喜欢feed.followers(0,10)获取前 10 个关注者
followers()
feed.followers()
limit
index
feed.followers(0,10)
您可以获取您正在关注的用户,feed.following()并且在这种情况下还可以使用索引和限制,例如feed.following(0,10)获取您关注的前 10 个用户。
feed.following()
feed.following(0,10)