如何在 UWP 中使用 Microsoft Graph API 下载会议邀请中发送的附件
How to download attachment sent in Meeting invitation using Microsoft Graph API in UWP
我正在开发 UWP 应用程序并将我的个人 ID 用于 authentication
目的。
我与一些 attachments
召开了几次会议。我正在尝试使用 Graph API
.
下载这些附件
我叫这个API
https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations#GetAttachments
我能够获取有关附件的详细信息,例如名称和大小,但是有没有办法通过 UWP 应用以编程方式download
附件?
我建议为此使用 Microsoft Graph 而不是旧版 O365 REST API。
图表支持返回您要下载的 list of attachments for a given event. From here you should be able to locate the URI for the attachment。
我正在开发 UWP 应用程序并将我的个人 ID 用于 authentication
目的。
我与一些 attachments
召开了几次会议。我正在尝试使用 Graph API
.
我叫这个API
https://msdn.microsoft.com/en-us/office/office365/api/mail-rest-operations#GetAttachments
我能够获取有关附件的详细信息,例如名称和大小,但是有没有办法通过 UWP 应用以编程方式download
附件?
我建议为此使用 Microsoft Graph 而不是旧版 O365 REST API。
图表支持返回您要下载的 list of attachments for a given event. From here you should be able to locate the URI for the attachment。