1
使用Imap和MailKit連接到Office 365時出現問題。我得到的例外是The remote certificate is invalid according to the validation procedure
MailKit C#ImapClient.Connect()到Office 365生成異常:「根據驗證過程,遠程證書無效」
https://github.com/jstedfast/MailKit
代碼:
imapClient = new ImapClient();
imapClient.Connect("outlook.office365.com", 993, true);
據我可以設置客戶端接受所有證書,但我不wan't做到這一點的文檔。
// For demo-purposes, accept all SSL certificates
imapClient.ServerCertificateValidationCallback = (s,c,h,e) => true;
的Microsoft Office 365的設置應該是正確的:
有其他人遇到這樣和解決它?