我一直在嘗試獲取Gmail中未讀電子郵件的數量,但遇到了一些問題。我做了一個搜索,我發現ImapX庫應該可以幫助我實現這個目標,但是我在StackOverFlow上找到的關於預覽問題的代碼不起作用。這是我的代碼現在:使用C#從gmail獲取未讀的計數
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string username = "[email protected]";
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);