3

尝试访问资源邮箱时出现此错误。请任何人帮助我。我是 EWS 的新手。

我可以通过 OWA(Outlook Web 应用程序)访问资源邮箱。但我不是这个邮箱的所有者,因为它是共享邮箱。

我的代码:

ServicePointManager.ServerCertificateValidationCallback = CertificateValidationCallBack;
ExchangeService newExchangeService = new ExchangeService  (ExchangeVersion.Exchange2007_SP1);
newExchangeService.Credentials = new NetworkCredential(username, password, domain);
newExchangeService.AutodiscoverUrl(email-id, RedirectionUrlValidationCallback);

newExchangeService.ImpersonatedUserId = new ImpersonatedUserId(ConnectingIdType.SmtpAddress, email_which_i_want_to_access);

Folder visitorsFolder = Folder.Bind(newExchangeService, WellKnownFolderName.Inbox);
foreach (Folder childfolder in visitorsFolder.FindFolders(new FolderView(10)))
        {
            Console.WriteLine(childfolder.DisplayName);
        }
4

1 回答 1

3

问题可能是您没有模拟邮箱的权限,但您可能具有代理访问权限。请参阅我对这个类似问题的回答,了解当您具有委托访问权限时如何访问邮箱: https ://stackoverflow.com/a/9242792/64161

于 2013-03-05T09:00:55.887 回答