使用自动发现获取 Microsoft Exchange 帐户的 Imap 详细信息
Getting Imap Details for microsoft exchange account using Autodiscover
使用 https://msdn.microsoft.com/en-us/library/ee332364.aspx 的“调用自动发现”部分,我可以获得自动发现 xml 响应。我从 xml 响应中提取了 'EwsUrl' 但如何从中获取交换帐户的 imap 详细信息?我需要 imap 详细信息才能从该帐户获取邮件。
您可以从 SOAP 自动发现端点获取 IMAP 信息,但我不相信 POX 端点returns。
您需要请求 InternalImap4Connections
和 ExternalImap4Connections
设置。有关可用于试验的 .NET 代码示例,请参阅 https://msdn.microsoft.com/EN-US/library/office/dd877068(v=exchg.150).aspx for documentation, and see https://code.msdn.microsoft.com/exchange/Exchange-2013-Get-user-7e22c86e。
使用 https://msdn.microsoft.com/en-us/library/ee332364.aspx 的“调用自动发现”部分,我可以获得自动发现 xml 响应。我从 xml 响应中提取了 'EwsUrl' 但如何从中获取交换帐户的 imap 详细信息?我需要 imap 详细信息才能从该帐户获取邮件。
您可以从 SOAP 自动发现端点获取 IMAP 信息,但我不相信 POX 端点returns。
您需要请求 InternalImap4Connections
和 ExternalImap4Connections
设置。有关可用于试验的 .NET 代码示例,请参阅 https://msdn.microsoft.com/EN-US/library/office/dd877068(v=exchg.150).aspx for documentation, and see https://code.msdn.microsoft.com/exchange/Exchange-2013-Get-user-7e22c86e。