xmppconnection的login方法时报错

  • Post author:
  • Post category:其他



今天,学习asmack的时候登录出现了问题,使用xmppconnection的login方法时报错

<span style="font-size:18px;">SASLError using DIGEST-MD5: not-authorized
                    org.jivesoftware.smack.sasl.SASLErrorException:<strong><span style="color:#ff6666;"> </span><span style="color:#cc0000;">SASLError using DIGEST-MD5: not-authorized</span></strong>
                    at org.jivesoftware.smack.SASLAuthentication.authenticate(SASLAuthentication.java:342)
                    at org.jivesoftware.smack.tcp.XMPPTCPConnection.login(XMPPTCPConnection.java:244)
                    at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:442)
                    at com.yxnne.myside.biz.LoginBiz$1.run(LoginBiz.java:46)
                    at java.lang.Thread.run(Thread.java:841)
</span>



实际上是客户端没有开启SASL机制,在XMPP连接配置ConnectionConfigration的时候,加上


“SASLAuthentication.supportSASLMechanism(“PLAIN”,0);”即可。



版权声明:本文为JerryCoding原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。