我在用microsoft-graph api。我想在replying时添加一个附件到邮件中。
我曾尝试在请求正文中添加附件,但未成功。
{ "attachments":[
{
"@odata.type":"#Microsoft.OutlookServices.FileAttachment",
"name":"image.png",
"contentBytes":"base64 string"
}],
"comment": "reply body"
}发布于 2019-04-02 02:13:29
您必须执行create a reply、add the attachment,然后执行send the message。您不能使用基本/reply端点执行此操作。
https://stackoverflow.com/questions/55456721
复制相似问题