我正在尝试通过microsoft-graph-api获取签名邮件的附件。
我在此URL上使用了 GET-请求:
https://graph.microsoft.com/v1.0/me/messages/AAMkAG.../attachments
这应该返回指定邮件的对象列表。每个对象都包含一个附件的元数据,例如“ 名称”和“ contentType ”,以及包含内容内容的属性“ contentBytes ”附件为base64-string
。
如果邮件没有附件,则此列表为空。
到目前为止,对于所有未通过S/MIME
签名的邮件,此方法都可以正常使用。
但是,如果邮件是用S/MIME
签名的,则响应列表中会出现奇怪的结果。
无论邮件有多少个附件,响应列表都只包含一个元素。然后,此元素带有名称“ smime.p7m ”和contentType“ multipart / signed ”,而contentBytes属性几乎包含邮件的整个MIME,而不是内容单个附件。
我无法想象这是期望的行为,所以我问:
这是microsoft-graph-api中的错误还是我在请求中做错了?如果是,我该如何解决?
答案 0 :(得分:1)
这可能与您的问题无关,但是我花了3天的时间尝试从已签名但未加密的电子邮件中提取附件。希望这对处于类似情况的人有所帮助。 以下是在vb.net中对我有用的步骤:
If String.Equals(origMessage.Attachments.First.ContentType, "multipart/signed",
StringComparison.OrdinalIgnoreCase) AndAlso
String.Equals(origMessage.Attachments.First.Name, "smime.p7m", StringComparison.OrdinalIgnoreCase) Then
Dim smimeFile As FileAttachment = origMessage.Attachments.First
smimeFile.Load()
Dim memoryStreamSigned As MemoryStream = New MemoryStream(smimeFile.Content)
Dim entity = MimeEntity.Load(memoryStreamSigned)
If TypeOf entity Is Cryptography.MultipartSigned Then
Dim mltipart As Multipart = entity
Dim attachments As MimeEntity = mltipart(0)
If TypeOf attachments Is Multipart Then
Dim mltipartAttachments As Multipart = attachments
For i As Integer = 0 To mltipartAttachments.Count - 1
If mltipartAttachments(i).IsAttachment Then
**'BOOM, now you're looping your attachment files one by one**
**'Call your decode function to read your attachment as array of Bytes**
End If
Next
End If
End If
'Read and decode content stream
Dim fileStrm = New MemoryStream()
mltipartAttachments(i).Content.DecodeTo(fileStrm)
Dim decodedBytes(0 To fileStrm.Length - 1) As Byte
fileStrm.Position = 0 'This is important because .DecodeTo set the position to the end!!
fileStrm.Read(decodedBytes, 0, Convert.ToInt32(fileStrm.Length))
现在,您已将附件文件解码为字节数组,您可以保存它或做任何您想做的事情:)希望对您有所帮助!
答案 1 :(得分:0)