获取交换服务器的域名

时间:2018-10-23 09:30:57

标签: dns exchangewebservices

如何使用ews API获取Exchange Server 2013、2016和Office 365域名?

如果我使用AutodiscoverService.GetDomainSettings(“ domainname”)要求提供域名作为输入。

是否可以使用ews api获取Office 365服务器的域名?

1 个答案:

答案 0 :(得分:0)

不幸的是,没有直接使用EWS获得域名的功能。它需要您所提到的域名。但是,如果可能,您可以尝试使用Microsoft Graph API来满足您的需求。使用以下Graph API。

https://graph.microsoft.com/v1.0/domains

然后它将返回:

HTTP/1.1 200 OK
Content-type: application/json
Content-length: 192

{
  "authenticationType": "authenticationType-value",
  "availabilityStatus": "availabilityStatus-value",
  "id": "contoso.com",
  "isAdminManaged": true,
  "isDefault": true,
  "isInitial": true,
  "isRoot": true
}

您将看到ID。

请参考链接:Get domain

请查看我的以下测试结果: enter image description here