在我的注销功能中,Twitter Android 应用程序中的 Logcat 出现错误
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
访问以下链接
http://blog。 doityourselfandroid.com/2011/02/13/guide-to-integrating-twitter-android-application/
Visit the following link
http://blog.doityourselfandroid.com/2011/02/13/guide-to-integrating-twitter-android-application/