首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Microsoft Graph邮件消息加密

Microsoft Graph邮件消息加密
EN

Stack Overflow用户
提问于 2018-10-28 10:00:18
回答 1查看 1.8K关注 0票数 1

我无法在Office365中找到与Microsoft (overview)检索加密邮件消息有关的信息。如果邮件被加密了,我还能取回它吗?哪些元数据和数据可以公开?

EN

回答 1

Stack Overflow用户

发布于 2018-10-28 13:49:59

如果邮件被加密了,我还能取回它吗?哪些元数据和数据可以公开?

是的,您仍然可以检索消息列表,但是不能通过Graph获得实际的消息体。邮件Body/BodyPreview将显示如下:

此消息受到Microsoft信息保护的保护。您可以使用Microsoft打开它,它可用于iOS、Android和Mac。在这里为您的设备获取Outlook:http://aka.ms/protectedmessage。Microsoft信息保护a

我的测试请求字符串:

代码语言:javascript
复制
https://graph.microsoft.com/v1.0/me/messages?$filter=startswith(subject,'Data Protected mail test')&top=1

响应数据(供参考的元数据):

代码语言:javascript
复制
{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('my user id')/messages",
    "@odata.nextLink": "https://graph.microsoft.com/v1.0/me/messages?$filter=startswith(subject%2c%27Data+Protected+mail+test%27)&top=1&$skip=1",
    "value": [
        {
            "@odata.etag": "W/\"CQAAABYAAADI9sWjzaI4R7XL22NiFR43AACWTT+Z\"",
            "id": "AAMkADQ5OWMzMGEwLTg4ZjktNDk1Ny05NzFmLWRh……bPeZSPaAAF6dOzdAAA=",
            "createdDateTime": "2016-11-03T05:23:25Z",
            "lastModifiedDateTime": "2018-09-04T11:19:40Z",
            "changeKey": "CQAAABYAAADI9sWjzaI4R7XL22NiFR43AACWTT+Z",
            "categories": [],
            "receivedDateTime": "2016-11-03T05:23:25Z",
            "sentDateTime": "2016-11-03T05:20:36Z",
            "hasAttachments": false,
            "internetMessageId": "<……@…….prod.outlook.com>",
            "subject": "Data Protected mail test ",
            "bodyPreview": "This message is protected with Microsoft Information Protection. You can open it using Microsoft Outlook, available for iOS, Android, Windows, and Mac OS. Get Outlook for your device here: http://aka.ms/protectedmessage. Microsoft Information Protection a",
            "importance": "normal",
            "parentFolderId": "……=",
            "conversationId": "……=",
            "isDeliveryReceiptRequested": null,
            "isReadReceiptRequested": false,
            "isRead": false,
            "isDraft": false,
            "webLink": "https://outlook.office365.com/owa/?ItemID= ……&exvsurl=1&viewmodel=ReadMessageItem",
            "inferenceClassification": "focused",
            "body": {
                "contentType": "text",
                "content": "This message is protected with Microsoft Information Protection. You can open it using Microsoft Outlook, available for iOS, Android, Windows, and Mac OS. Get Outlook for your device here: http://aka.ms/protectedmessage. Microsoft Information Protection allows you to ensure your emails can’t be copied or forwarded without your permission. Learn more at http://microsoft.com/rms."
            },
            "sender": {
                "emailAddress": {
                    "name": "Test admin",
                    "address": "testadmin@microsoft.com"
                }
            },
            "from": {
                "emailAddress": {
                    "name": "Test admin",
                    "address": "testadmin@onmicrosoft.com"
                }
            },
            "toRecipients": [
                {
                    "emailAddress": {
                    "name": "Test admin",
                    "address": "testadmin@onmicrosoft.com"
                } ,
                 "emailAddress": {
                    "name": "Test admin",
                    "address": "testadmin@onmicrosoft.com"
                }   
            ],
            "ccRecipients": [],
            "bccRecipients": [],
            "replyTo": [],
            "flag": {
                "flagStatus": "notFlagged"
            }
        }
    ]
}
票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/53030290

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档