gpt4 book ai didi

outlook - 如何获取引用附件的url?

转载 作者:行者123 更新时间:2023-12-04 01:57:02 26 4
gpt4 key购买 nike

我正在使用 Microsoft Graph。当我使用

GET /me/messages/{messageId}/attachments

如果有通过 OneDrive 或 SharePoint 共享的附件,@odata.type 将为 #microsoft.graph.referenceAttachment。而且体积很小,因为它不是真正的文件。

 {
"@odata.type": "#microsoft.graph.referenceAttachment",
"id": "AAMkADBlZTUwNTkxLWVmODgtNDVhNC1iZjhlLTdjNjA1ODZlMDI5MgBGAAAAAACUbnk-iwQZRbXMgkfKtmYhBwCpTc-InBsuTYwTUBb_VIb4AAAAAAEMAACpTc-InBsuTYwTUBb_VIb4AAEBiQutAAABEgAQAMqgyfrokPFCrRfUa2mrxxM=",
"name": "word.docx",
"contentType": null,
"size": 4601,
"isInline": false
}

有什么办法可以得到这个附件的实际url,可以在浏览器中打开吗?谢谢

最佳答案

v1.0 版本对 referenceAttachment 的支持非常有限.我的意思是,除了承认它们的存在之外,你对它们无能为力。

然而,测试版支持更丰富的 referenceAttachment目的。当我遇到 referenceAttachment 时,我使用 beta 端点调用以检索附件,该端点确实具有指向实际文件的链接:

{
"contentType": "string",
"id": "string (identifier)",
"isFolder": true,
"isInline": true,
"lastModifiedDateTime": "String (timestamp)",
"name": "string",
"permission": "string",
"previewUrl": "string",
"providerType": "string",
"size": 1024,
"sourceUrl": "string",
"thumbnailUrl": "string"
}

关于outlook - 如何获取引用附件的url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49827202/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com