JavaMail Exception javax.mail.AuthenticationFailedException 534-5.7.9 需要应用程序专用密码

2022-09-03 03:38:29

我想使用 JavaMailAPI 发送邮件

我已经做了一些编码,但它不起作用抛出异常:-

邮件发送失败 javax.mail.AuthenticationFailedException: 534-5.7.9 需要应用程序专用密码。

package com.appreciationcard.service;

import java.util.Properties;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import com.appreciationcard.dao.DAOFactory;
import com.appreciationcard.forms.ComposeForm;

public class MailServiceImpl implements MailService {

public boolean mailsent(ComposeForm composeForm) {
    String to = composeForm.getTo();
    String from = composeForm.getFrom();
    String cc = composeForm.getCc();
    String bcc = composeForm.getBcc();
    String subject = composeForm.getSubject();
    String messages = composeForm.getMessage();
    Properties props = new Properties();
    props.put("mail.smtp.host", "smtp.gmail.com");
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.starttls.enable", true);
    props.put("mail.smtp.port", "587");
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.debug", "true");
    System.out.println("Properties" + props);
    Session session = Session.getDefaultInstance(props,
            new javax.mail.Authenticator() {
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(
                            "tosudhansusekhar@gmail.com", "xxxx");
                }
            });
    try {
        MimeMessage message = new MimeMessage(session);
        message.setFrom(new InternetAddress("dynamicmihir@gmail.com"));
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(
                to));
        message.setSubject(subject);
        message.setText(messages);
        Transport.send(message);
    } catch (MessagingException mex) {
        System.out.println("Message Sending Failed" + mex);
        mex.printStackTrace();
    } 

}

}

我在服务器控制台上遇到异常

邮件发送失败 javax.mail.AuthenticationFailedException: 534-5.7.9 需要应用程序专用密码。

有关详细信息,请访问 534 5.7.9 http://support.google.com/accounts/bin/answer.py?answer=185833 o5sm11464195pdr.50 - gsmtp

将任何人好心地帮助我解决这个问题。


答案 1

您已为 Google 帐户启用了两阶段身份验证,因此应用程序将无法使用实际密码登录到您的 Google 帐户。Google 希望您为使用的每个应用生成一个应用专用密码(并为其命名),然后使用该密码从您的应用登录到您的 Google 帐户。这允许您在启用2步身份验证时不将密码提供给第三方应用程序。

另一种方法是让您的应用支持重定向到 Google 网页,以便使用用户名和密码以及 Google 身份验证器应用生成的代码进行身份验证。

链接清楚地解释了该怎么做。


答案 2

只需为您的帐户创建一个应用专用密码,然后使用该密码即可。

创建密码的步骤:

转到您的帐户设置(https://myaccount.google.com/) -->>安全 -->> 登录 Google 后 -->> 应用专用密码 -->> 输入您的凭据以登录帐户 -->> 选择“应用”和“设备” -->>生成。

将密码复制并粘贴到某个位置。

您可以使用此密码代替您的帐户密码。


推荐