【发布时间】:2020-08-28 01:50:32
【问题描述】:
我目前正在用 Go 编写一个 rest API,其中一个功能是创建 office 365 邮箱。 Powershell 有命令 New-Mailbox,有谁知道是否有一个 Go 包可以与 office 365 交换“对话”?
【问题讨论】:
标签: go office365 microsoft-graph-api exchange-server
我目前正在用 Go 编写一个 rest API,其中一个功能是创建 office 365 邮箱。 Powershell 有命令 New-Mailbox,有谁知道是否有一个 Go 包可以与 office 365 交换“对话”?
【问题讨论】:
标签: go office365 microsoft-graph-api exchange-server
您可以使用Microsoft Graph REST API。即CreateUser请求。
还有 go-msgraph 在 Golang 中封装 Microsoft Graph API 的包。
【讨论】: