【问题标题】:Smack connecting to Google's XMPP service (gtalk) throws exception "SASLError using PLAIN: not-authorized"Smack 连接到 Google 的 XMPP 服务 (gtalk) 会引发异常“SASLError using PLAIN: not-authorized”
【发布时间】:2014-08-28 08:07:37
【问题描述】:

我正在尝试使用 SMACK API 连接到 gmail,但出现以下错误,并且过去 2 天我被困住了。

Exception in thread "main" org.jivesoftware.smack.sasl.SASLErrorException: SASLError using PLAIN: not-authorized
at org.jivesoftware.smack.SASLAuthentication.authenticate(SASLAuthentication.java:348)
at org.jivesoftware.smack.tcp.XMPPTCPConnection.login(XMPPTCPConnection.java:244)
at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:442)

我正在使用 smack 4.0.3 jar 和 Java 7。我的办公网络中没有阻止 gmail。我已经厌倦了论坛中给出的所有建议。

1. setting SASLMechanism to PLAIN / DIGEST-MD5.   
2. adding the Thread.sleep delay after connect.  
3. by setting the dummy SSLSocketFactory. 
4. removing the domain name from user name. 

以下是我正在尝试执行的代码。

public class JabberExample {
public static void main(String[] args) throws Exception{

    XMPPTCPConnection con = new XMPPTCPConnection("gmail.com");
    SASLAuthentication.supportSASLMechanism("PLAIN",0);

    con.connect();
    con.login("username", "password");

    Chat chat = ChatManager.getInstanceFor(con).createChat("chatusernam@gmail.com", new MessageListener() {
         public void processMessage(Chat chat, Message message) {
             System.out.println("Received message: " + message);
         }
     });

    chat.sendMessage("Message..!!");

     con.disconnect();
}

}

希望我能在这里得到一些建议和帮助。

【问题讨论】:

    标签: xmpp smack google-talk


    【解决方案1】:

    Google 最近已转为不允许在其帐户中使用 PLAIN 和类似方法 - https://support.google.com/accounts/answer/6010255

    如果您想使用此类身份验证机制,则需要帐户启用它们 - https://www.google.com/settings/security/lesssecureapps

    【讨论】:

    • 凯夫,谢谢你的帮助。启用身份验证机制后,我可以连接到 Gmail 并成功聊天。
    • 不客气。如果这个问题解决了,您是否可以考虑接受这个答案,以便其他人可以找到它?
    猜你喜欢
    • 2015-08-03
    • 1970-01-01
    • 1970-01-01
    • 2012-12-28
    • 1970-01-01
    • 2023-03-24
    • 1970-01-01
    • 2015-04-16
    • 1970-01-01
    相关资源
    最近更新 更多