我使用谷歌日历api将事件插入到日历中。是否有google日历api来根据用户设置的描述更改日历事件的描述?
请回答我的问题。谢谢!
发布于 2022-11-29 08:46:10
事件贴片法将允许您更新事件的描述。
PATCH https://www.googleapis.com/calendar/v3/calendars/[CALENDARID]/events/[EVENTID]?key=[YOUR_API_KEY] HTTP/1.1
Authorization: Bearer [YOUR_ACCESS_TOKEN]
Accept: application/json
Content-Type: application/json
{
"description": "test"
}请记住,使用修补程序只发送要编辑的属性,不要发送希望保持不变的属性。
https://stackoverflow.com/questions/74608986
复制相似问题