我一直在尝试计算 Gmail 中未读电子邮件的数量,但遇到了一些问题。我进行了搜索,发现 ImapX 库应该可以帮助我实现这一目标,但是我在 StackOverFlow 上找到的关于预览问题的代码不起作用。这是我现在的代码:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string username = "my_email@gmail.com";
string passwd = "my_pass";
int unread = 0;
ImapClient client = new ImapClient("imap.gmail.com", 993, true);
bool result = client.IsConnected;
if (result)
Console.WriteLine("Connection Established");
result = client.Login(username, passwd); // <-- Error here
if (result)
{
Console.WriteLine("Logged in");
FolderCollection folders = client.Folders;
// Message messages = client.Folders["INBOX"].Messages;
foreach (ImapX.Message m in client.Folders["INBOX"].Messages)
{
if (m.Seen == false)
unread++;
}
Console.WriteLine(unread);
}
}
}
}
错误是:
不支持所选的身份验证机制”第 26 行
这是result = client.Login(username, passwd);