twitter4j xAuth 身份验证

发布于 2024-11-16 11:08:54 字数 431 浏览 5 评论 0原文

我正在尝试使用 twitter4j 库集成 xauth 身份验证,

我发现了多个类似于 http://www.hiteshagrawal.com/java/twitter-xauth-permission-using-java 都表明我应该有这一行:

Twitter twitter = new TwitterFactory().getInstance(username, password);

但这给了我一个错误,因为 getInstance() 方法不允许使用两个字符串的参数。

twitter4j 库是否发生了变化,或者我做错了什么?

I'm trying to integrate xauth authentication using the twitter4j library

I've found multiple guides similar to http://www.hiteshagrawal.com/java/twitter-xauth-permission-using-java that all indicate i should have the line:

Twitter twitter = new TwitterFactory().getInstance(username, password);

But this gives me an error, because the getInstance() method doesn't allow the parameter of two strings.

Did the twitter4j library change, or am I doing something wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不必了 2024-11-23 11:08:54

Twitter 已弃用基本身份验证,从 Twitter4J 2.2.0 开始,您需要使用 Twitter#getOAuthAccessToken(id,password) 来获取访问令牌。
http://twitter4j.org/en/versions.html#migration21x-22x

Twitter deprecated Basic authentication and as of Twitter4J 2.2.0, you need to use Twitter#getOAuthAccessToken(id,password) to get the access token.
http://twitter4j.org/en/versions.html#migration21x-22x

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