EWS ( https://mailserver.com/EWS/Exchange.asmx )を使用して電子メール アカウントの受信トレイにアクセスしようとしています。しかし、次のエラーが発生し続けます。
リクエストは失敗しました。リモート サーバーがエラーを返しました: (401) 権限がありません。
私のソースコードはここにあります:
ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010);
ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, sslPolicyErrors) => true;
service.Url = new Uri("https://mailserver.com/EWS/Exchange.asmx");
service.Credentials = new WebCredentials("UserName", "Password", null);
ItemView view = new ItemView(50);
FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Inbox, view);
//この行のエラー