我正在尝试使用MailKit(http://jstedfast.github.io/MailKit/docs/index.html)使用oAuth登录Gmail。我可以使用刷新的AuthToken登录Google API,但是当我尝试在MailKit中使用刷新的令牌时,我收到错误"无效的凭据"
任何线索? 谢谢, 杰夫
这是我的代码:
var secrets = new ClientSecrets()
{
ClientId = "xxx-yyy.apps.googleusercontent.com",
ClientSecret = "xyzSecret"
};
IAuthorizationCodeFlow flow =
new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer
{
ClientSecrets = secrets,
Scopes = new string[] { GmailService.Scope.GmailReadonly }
});
var tokenResponse = flow.RefreshTokenAsync("", connection.RefreshToken, CancellationToken.None).Result;
using (var client = new MailKit.Net.Imap.ImapClient())
{
var credentials = new NetworkCredential("emailtoconnect@gmail.com", tokenResponse.AccessToken);
client.Connect("imap.gmail.com", 993, true, CancellationToken.None);
try
{
client.Authenticate(credentials, CancellationToken.None);
}
catch (Exception ex)
{
throw;
}
}
答案 0 :(得分:0)
这只是一个范围问题。上面的代码适用于gmail oAuth !!
答案 1 :(得分:0)
using (var client = new ImapClient())
{
client.Connect("imap.gmail.com", 993, true);
client.AuthenticationMechanisms.Remove("XOAUTH2");
client.Authenticate(EmailId, Password);
}
上面的代码用于使用imap和MailKit工具登录gmail。但在此之前,您必须手动登录gmail并在“设置”中选中“启用Imap”选项。这肯定会奏效。
答案 2 :(得分:0)
更清楚的答案是原始代码中的范围不正确
Scopes = new string[] { GmailService.Scope.GmailReadonly }
需要
Scopes = new string[] { GmailService.Scope.MailGoogleCom }
以使用访问令牌对imapi进行身份验证。