gpt4 book ai didi

java - 在java中使用XOauth2通过IMAP连接到microsoft Outlook.com

转载 作者:行者123 更新时间:2023-12-01 04:19:17 26 4
gpt4 key购买 nike

微软发布a new blog entry关于使用 OAuth2 获取电子邮件的新 IMAP 功能。但是,我对 IMAP 的经验很少甚至没有,并且在 IMAP 中使用 OAuth 访问 token 时遇到问题。我曾经在 Android 上使用 javamail,并且使用电子邮件和密码,我能够毫无问题地访问电子邮件。但是,我不知道如何使用访问 token 通过 javamail 进行连接,我什至不确定它是否可能。关于如何使用 IMAP 和 OAuth2 访问“imap-mail.outlook.com”有什么想法吗?

最佳答案

解决方案是放弃 javamail 并将其替换为 apache commons net 库。下面介绍的方法使用 Outlook imap 服务器进行身份验证。 Apache commons lib 不像 javamail 那样用户友好,但看起来这是可行的方法

private boolean sendBase64Credentials(IMAPSClient client) {
String base64Encoded;

try {
// Outlook.com specification
// user={user@domain.com}^Aauth=Bearer {access token}^A^A
byte[] binLogin = ("user=" + user + "\u0001auth=Bearer "
+ oauthToken + "\u0001\u0001").getBytes("utf-8");
base64Encoded = Base64.encodeBase64StringUnChunked(binLogin);
} catch (UnsupportedEncodingException e) {
return false;
}

try {
int code = client.sendData(base64Encoded);
switch (code) {
case IMAPReply.OK:
return true;
case IMAPReply.BAD:
case IMAPReply.CONT:
case IMAPReply.NO:
default:
System.out.println("return = ?");
}
System.out.println(client.getReplyString());

} catch (IOException e) {
e.printStackTrace();
}
return false;
}

private boolean authenticateXoauth2(IMAPSClient client) {
try {
int code = client.sendCommand("AUTHENTICATE XOAUTH2");
switch (code) {
case IMAPReply.CONT:
return sendBase64Credentials(client);
case IMAPReply.OK:
case IMAPReply.BAD:
case IMAPReply.NO:
default:
System.out.println("ERRO");
}

} catch (Exception e) {
System.out.println("Erro: " + e.getMessage());
}
return false;
}

关于java - 在java中使用XOauth2通过IMAP连接到microsoft Outlook.com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19123699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com