android twitter 基于 Oauth 的身份验证和更新状态 SSL 错误

发布于 2024-09-11 18:19:32 字数 488 浏览 8 评论 0原文

Android twitter 尝试以下教程进行基于 Oauth 的身份验证和更新用户状态。

http://www.androidsdkforum.com/android-sdk- development/3-oauth-twitter.html

当我运行时,它已成功进行身份验证,但当它尝试更新状态时,会发生以下错误。

“twitter4j.TwitterException:SSL 握手失败:SSL 库失败,通常是协议错误 错误:140770FC:SSL 例程:SSL23_GET_SERVER_HELLO:未知协议(external/openssl/ssl/s23_clnt.c:585 0xaf589f78:0x00000000)”

知道出了什么问题吗?

Android twitter Trying the following tutorial for Oauth based authentication and updating user status.

http://www.androidsdkforum.com/android-sdk-development/3-oauth-twitter.html

When i run It has successfully authenticate but when it tries to update the status following error occur.

"twitter4j.TwitterException: SSL handshake failure: Failure in SSL library, usually a protocol error
error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol (external/openssl/ssl/s23_clnt.c:585 0xaf589f78:0x00000000)"

any idea whats goin wrong ?

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

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

发布评论

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

评论(2

寂寞陪衬 2024-09-18 18:19:32

您可以使用下面提到的代码通过模拟器访问代理后面的网络。

client = getHttpClient();
client.getCredentialsProvider().setCredentials(
      new AuthScope(null, -1, null), 
      new UsernamePasswordCredentials("Username", "Password"));
HttpHost httpproxy = new HttpHost("hostname", "portname", "http");
client.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, httpproxy);

You can use the below mentioned code to access network behind proxy using Emulator.

client = getHttpClient();
client.getCredentialsProvider().setCredentials(
      new AuthScope(null, -1, null), 
      new UsernamePasswordCredentials("Username", "Password"));
HttpHost httpproxy = new HttpHost("hostname", "portname", "http");
client.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, httpproxy);
隔岸观火 2024-09-18 18:19:32

当我在模拟器上运行这个应用程序时,我使用互联网并在代理后面,这就是为什么它抛出异常,当我使用直接连接时它工作正常,我猜代理有些问题。

When i run this app on emulator i am using internet and behind proxy and thats why it is throwing exception, when i use direct connection it works fine, some thing bad with proxy i guess.

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