在我的注销功能中,Twitter Android 应用程序中的 Logcat 出现错误

发布于 2024-12-09 19:01:46 字数 597 浏览 0 评论 0原文

我的 Twitter Android 应用程序是 clent 基础意味着窗口基础,我在我的应用程序中使用 twitter 4j otweet.com。我通过共享 prefrence 存储了身份验证令牌。我在 logcat 中收到错误..也就是说.. twitter4j.TwitterException:读取错误:SSL 库失败,通常是协议错误。

我的代码是:

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://api.otweet.com/1/account/end_session.format");
try {
       // Execute HTTP Post Request
       httpclient.execute(httppost);
  } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
  } catch (IOException e) {
        // TODO Auto-generated catch block
  }
}

My twitter android app is clent base means window base,I am using twitter 4j otweet.com for my my application.I stored Auth token through shared prefrence.I am getting error in logcat..that is.. twitter4j.TwitterException: Read error: Failure in SSL library, usually a protocol error.

And my code is:

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://api.otweet.com/1/account/end_session.format");
try {
       // Execute HTTP Post Request
       httpclient.execute(httppost);
  } catch (ClientProtocolException e) {
        // TODO Auto-generated catch block
  } catch (IOException e) {
        // TODO Auto-generated catch block
  }
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文