如何实现“您可能还想关注”
我正在使用 twitter4j 关注 twitter 帐户,我想知道如何使用 实现“
。you might also want to follow
”和“similar to @foo
” twitter4j API
有没有办法使用此 API 动态获取此信息?
I am using twitter4j to follow twitter accounts, I would like to know how to implement "you might also want to follow
" and "similar to @foo
" using twitter4j API
.
Is there a way to fetch this information dynamically using this API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在寻找建议的用户列表,您应该查看 UserMethods Interface< /a> 具有方法
此方法应与 Twitter API 获取users/suggestions/:slug
由于 Twitter 接口 是您可以调用该方法并从用户那里获取建议的列表。
If you are looking for suggested user list, you should look UserMethods Interface that has the method
This method should match with the Twitter API GET users/suggestions/:slug
Since Twitter Interface is sub interface of that, you could call that method and get the suggested list from the user.