如何使用PHP中的Google日历API在某人的Google日历中添加事件

问题描述 投票:-1回答:1

实际上,我有一个用于将任务分配给员工的Web应用程序,现在我想将Google日历与其集成。

所以现在,当我将任务分配给任何员工时,都会在该员工的Google日历中自动创建任务的事件。

我正在使用Google Calendar PHP API。

预先感谢。

php google-calendar-api
1个回答
0
投票

您可以使用下面的代码来实现:

<?php
$string = str_replace(' ','+','Meeting at Office');
$time_one = '20191116T170000Z';
$time_two = '20191117T181500Z';
$date = urlencode($time_one.'/'.$time_two);
$location = urlencode('https://stackoverflow.com/');
$url = 'https://www.google.com/calendar/render?action=TEMPLATE&text='.$string.'&location='.$location.'&dates='.$date;
echo '<a href="'.$url.'">Add To calendar</a>'
?>
© www.soinside.com 2019 - 2024. All rights reserved.