Android jtwitter权限问题

发布于 2024-10-27 13:35:50 字数 596 浏览 7 评论 0原文

我正在尝试通过我的 Android 应用程序发布一条简单的推文。我遵循了 (教程 并且登录有效现在,当我尝试发推文时,我的 Logcat 说我无权发布某些内容,并遵循了一些教程,但没有成功,

谢谢

代码: Twitter jtwit = new Twitter(用户名, pswd); jtwit.setStatus(“测试”);

日志: 03-29 13:52:02.724:错误/AndroidRuntime(1341):致命异常:主要 03-29 13:52:02.724:错误/AndroidRuntime(1341):java.lang.RuntimeException:无法启动活动ComponentInfo {Adforce.files / Adforce.files.twitterConnection}:winterwell.jtwitter.TwitterException$UpdateToOAuth:您需要切换到 OAuth。 Twitter 不再支持基本身份验证。

I'm tryin to tweet a simple post from my Android application. I followed a (tutorial and the login works fine. Now when I try to tweet my Logcat says I don't have the rights to post something. I read something about OAuthProvider and follow a couple tutorials of that but without succes. Anyone got an idea?

Thanks

Code:
Twitter jtwit = new Twitter(user_name, pswd);
jtwit.setStatus("test");

Log:
03-29 13:52:02.724: ERROR/AndroidRuntime(1341): FATAL EXCEPTION: main
03-29 13:52:02.724: ERROR/AndroidRuntime(1341): java.lang.RuntimeException: Unable to start activity ComponentInfo{Adforce.files/Adforce.files.twitterConnection}: winterwell.jtwitter.TwitterException$UpdateToOAuth: You need to switch to OAuth. Twitter no longer support basic authentication.

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

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

发布评论

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

评论(2

Spring初心 2024-11-03 13:35:50

你的例外本身就说明了这一点:

您需要切换到 OAuth。 Twitter 不再支持基本身份验证。

我想 Twitter 现在已经停止支持基本身份验证,您可以查看 Twitter OAuth

Your exception says itself:

You need to switch to OAuth. Twitter no longer support basic authentication.

I suppose twitter has now stopped support for basic authentication and you might look at Twitter OAuth

没企图 2024-11-03 13:35:50

您需要创建一个 OAuthSignpostClient,然后让用户对其进行身份验证,然后使用

Twitter jtwit = new Twitter(userName, myOAuthClient);

You need to make a OAuthSignpostClient, then get the user to authenticate it, and then use

Twitter jtwit = new Twitter(userName, myOAuthClient);

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