我想使用 integromat“进行 API 调用”模块向 Google 日历事件添加附件。之前上传到 Google 云端硬盘的附件。
我不知道如何设置“进行 API 调用”模块。请参阅下面的屏幕截图。
我试图了解 integromat 对此的帮助,但这对我来说有点困难。如果有人有这种情况,请帮助我。
谢谢你的帮助!
我想使用 integromat“进行 API 调用”模块向 Google 日历事件添加附件。之前上传到 Google 云端硬盘的附件。
我不知道如何设置“进行 API 调用”模块。请参阅下面的屏幕截图。
我试图了解 integromat 对此的帮助,但这对我来说有点困难。如果有人有这种情况,请帮助我。
谢谢你的帮助!
我很确定 Google Calendar API 不支持将外部文件作为附件的一部分,但我可能错了。我共享的当前工作方案将能够添加 Google Drive File 作为附件的一部分。请参考截图,
您将需要使用以下内容,
网址:/v3/calendars/{{CALENDAR_ID}}/events/{{EVENT_ID}}?supportsAttachments=true
方法:补丁
身体:
{
"attachments": [{
"fileId" : "",
"fileUrl": "https://drive.google.com/file/d/1yyVVQxgwb7wF6RckN_1KoGtSmikjk2MR/view?usp=sharing",
"mimeType": "image/png",
"title": "TestImage.png"
}]
}
您可以在此处参考文档:https ://developers.google.com/calendar/api/v3/reference/events/patch