簡體   English   中英

javax.mail.AuthenticationFailedException: [AUTH] 需要 Web 登錄

[英]javax.mail.AuthenticationFailedException: [AUTH] Web login required

我使用 Java 構建了一個應用程序來閱讀電子郵件。 並且它過去幾天沒有任何錯誤。 但是今天突然出現這樣的錯誤。

javax.mail.AuthenticationFailedException: [AUTH] Web login required: https://support.google.com/mail/answer/78754
        at com.sun.mail.pop3.POP3Store.protocolConnect(POP3Store.java:207)
        at javax.mail.Service.connect(Service.java:295)
        at javax.mail.Service.connect(Service.java:176)
        at MailReader.readMail(MailReader.java:44)
        at MailReader.run(MailReader.java:32)
        at java.util.TimerThread.mainLoop(Unknown Source)
        at java.util.TimerThread.run(Unknown Source)

我不知道如何解決這個問題。 我沒有放 2 路身份驗證。 而且我還允許使用不太安全的應用程序。 所以我無法弄清楚出了什么問題。 任何人都可以幫助我嗎? 我非常感激。

這是我正在使用的代碼,

String host = "pop.gmail.com";
String username = "somename@gmail.com";
String password = "password";

Properties prop = new Properties();
Session session = Session.getInstance(prop, null);
Store store = session.getStore("pop3s");
store.connect(host, username, password);
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_WRITE);

我的工作片段如下所示:

import java.util.Properties;

import javax.mail.Authenticator;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.NoSuchProviderException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Store;

public class CheckingMails {

   public static void check(String host, String user, String password) 
   {
      try {

      // create properties field
      Properties properties = new Properties();

      properties.put("mail.pop3s.host", host);
      properties.put("mail.pop3s.port", "995");
      properties.put("mail.pop3s.starttls.enable", "true");

      // Setup authentication, get session
      Session session = Session.getInstance(properties,
         new javax.mail.Authenticator() {
            protected PasswordAuthentication getPasswordAuthentication() {
               return new PasswordAuthentication(user, password);
            }
         });
      // session.setDebug(true);

      // create the POP3 store object and connect with the pop server
      Store store = session.getStore("pop3s");

      store.connect();

      // create the folder object and open it
      Folder emailFolder = store.getFolder("INBOX");
      emailFolder.open(Folder.READ_ONLY);

      // retrieve the messages from the folder in an array and print it
      Message[] messages = emailFolder.getMessages();
      System.out.println("messages.length---" + messages.length);

      for (int i = 0, n = messages.length; i < n; i++) {
         Message message = messages[i];
         System.out.println("---------------------------------");
         System.out.println("Email Number " + (i + 1));
         System.out.println("Subject: " + message.getSubject());
         System.out.println("From: " + message.getFrom()[0]);
         System.out.println("Text: " + message.getContent().toString());
      }

      // close the store and folder objects
      emailFolder.close(false);
      store.close();

      } catch (NoSuchProviderException e) {
         e.printStackTrace();
      } catch (MessagingException e) {
         e.printStackTrace();
      } catch (Exception e) {
         e.printStackTrace();
      }
   }

   public static void main(String[] args) {

      String host = "pop.gmail.com";
      String username = "abc@gmail.com";// change accordingly
      String password = "*****";// change accordingly

      check(host, username, password);

   }

}

該錯誤是由於 Google 的錯誤導致 POP3 服務無法正常工作。 2天后就修好了。

找不到官方聲明,只有論壇帖子。 相關資料: 1 , 2 , 3

我的問題是相同的代碼在本地運行但不在遠程雲(Bitbucket 管道)上運行,盡管我設置了不太安全的啟用。 我通過啟用兩步驗證並創建應用程序密碼解決了這個問題。 然后在代碼中使用此應用程序密碼而不是普通密碼。

您也可以查看以下鏈接: https : //docs.maildev.com/article/121-gmail-web-login-required-error---answer78754-failure

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM