I have multiple google calendar and I want to add watch on calendars in single request. Is this possible?
Right now I am doing this thing in loop:
foreach($calendar_resources as $key => $value)
{
$channelID = "xxxx-". date('His', time());
$channel->setId($channelID);
$watchEvent = $cal->events->watch($value, $channel);
var_dump($watchEvent);
}