如何实现“您可能还想关注”

发布于 2024-12-02 13:52:08 字数 182 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魔法唧唧 2024-12-09 13:52:08

如果您正在寻找建议的用户列表,您应该查看 UserMethods Interface< /a> 具有方法

ResponseList<User> getUserSuggestions(java.lang.String categorySlug)
                                      throws TwitterException

此方法应与 Twitter API 获取users/suggestions/:slug

由于 Twitter 接口 是您可以调用该方法并从用户那里获取建议的列表。

If you are looking for suggested user list, you should look UserMethods Interface that has the method

ResponseList<User> getUserSuggestions(java.lang.String categorySlug)
                                      throws TwitterException

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文