我无法使用Office365的Rest API创建包含附件的日历活动。创建没有附件的事件不是问题。尝试使用附件创建事件会创建事件,但不会添加我发送的文件。服务器以201响应代码响应。
我正在发送POST请求:
https://graph.microsoft.com/v1.0/me/calendars/$(calendarID)/events
我使用以下授权标题:
Authorization: Bearer $(tokenString)
请求有效负载:
{
"start": {
"dateTime": "2017-09-27T20:00:00.000",
"timeZone": "UTC"
},
"end": {
"dateTime": "2017-09-27T21:00:00.000",
"timeZone": "UTC"
},
"attendees": [
{
"emailAddress": {
"address": "person@example.com"
},
"type": "Required"
}
],
"subject": "Example subject",
"body": {
"content": "Example content",
"contentType": "Text"
},
"hasAttachments": true,
"sensitivity": "Normal",
"attachments": [
{
"@odata.type": "#microsoft.graph.fileAttachment",
"name": "$(fileName)",
"contentBytes": "$(base64EncodedString)"
}
]
}
我正在关注https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/calendar_post_events的文档。我的活动遵循event schema,附件跟随fileAttachment schema。
我为@ odata.type尝试了不同的值,从请求中删除了hasAttachments,以及向附件添加了name,size和contentType字段。所有这些都给出了相同的结果 - 一个201响应,一个没有附件的事件。
非常感谢任何帮助,谢谢!
答案 0 :(得分:3)
我也看到了!我可以在创建事件后发布附件,只是不包含具有初始创建有效负载的附件。
因此,作为解决方法,您可以创建事件,然后执行
POST /me/events/{eventid}/attachments
{
"@odata.type": "#microsoft.graph.fileAttachment",
"name": "$(fileName)",
"contentBytes": "$(base64EncodedString)"
}
我会与日历上的人员核实,看看为什么它在初始POST期间无效。