JavaMail异常javax.mail.AuthenticationFailedException 534-5.7.9需要特定于应用程序的密码

时间:2014-10-27 18:13:46

标签: java email javamail

我想使用JavaMailAPI发送邮件

我已经做了一些编码,但它没有工作抛出异常: -

消息发送Failedjavax.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();
    } 

}

}

我在服务器控制台上获得了异常

消息发送Failedjavax.mail.AuthenticationFailedException:534-5.7.9需要特定于应用程序的密码。

了解更多资讯534 5.7.9 http://support.google.com/accounts/bin/answer.py?answer=185833 o5sm11464195pdr.50 - gsmtp

任何人都会帮助我解决这个问题。

4 个答案:

答案 0 :(得分:10)

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

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

link清楚地解释了该怎么做。

答案 1 :(得分:1)

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

创建密码的步骤:

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

将密码复制并粘贴到某处。

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

答案 2 :(得分:0)

错误消息和知识库文章似乎非常正确:您需要为Google Mail服务器使用应用程序密码。您可以在Google帐户页面上创建这些丢弃密码。

答案 3 :(得分:0)

您可能正在尝试通过已启用双因素身份验证的Gmail帐户发送邮件。需要将6位数的身份验证令牌作为SMS消息发送到您的移动设备,或通过Google身份验证器应用生成。或者,您可以通过Google的基于网络的ui生成应用专用密码,并在通过您的Java代码访问邮件帐户时使用该密码。问题中的link you included会引导您完成整个过程。