xmppconnection的login方法时报错

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

SASLError using DIGEST-MD5: not-authorized
                    org.jivesoftware.smack.sasl.SASLErrorException: SASLError using DIGEST-MD5: not-authorized
                    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)

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

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

你可能感兴趣的:(android)