La cuenta no tiene permiso para suplantar al usuario solicitado.

Recibo este error al intentar acceder al buzón de recursos. por favor alguien me ayude en esto. Soy nuevo en EWS.

Puedo acceder al buzón de recursos a través de OWA (aplicación web de Outlook). Pero no soy propietario de este buzón ya que es buzón compartido.

mi código:

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);
        }

Respuestas a la pregunta(1)

Su respuesta a la pregunta