我想将Google日历与群组一起使用。您能否解释一下,如果此日历的每个人都可以共享,那么是否可以为活动创建新的插槽是可用的(不忙)。
答案 0 :(得分:0)
我认为你要找的是Freebusy: query。
返回一组日历的忙/闲信息。
你可以try it。
如果成功,则为response
{
"kind": "calendar#freeBusy",
"timeMin": datetime,
"timeMax": datetime,
"groups": {
(key): {
"errors": [
{
"domain": string,
"reason": string
}
],
"calendars": [
string
]
}
},
"calendars": {
(key): {
"errors": [
{
"domain": string,
"reason": string
}
],
"busy": [
{
"start": datetime,
"end": datetime
}
]
}
}
}