我有多个Google日历,我想在单个请求中在日历上添加监视。这可能吗?
现在我正在循环中做这件事:
foreach($calendar_resources as $key => $value)
{
$channelID = "xxxx-". date('His', time());
$channel->setId($channelID);
$watchEvent = $cal->events->watch($value, $channel);
var_dump($watchEvent);
}