如何通过auth api创建Google日历并为多个用户共享以便在php中进行编辑和查看

时间:2016-01-27 12:19:09

标签: javascript php google-calendar-api

我尝试了更多,但我没有找到确切的doc plz分享动态实现谷歌日历的任何想法,可以分享给用户进行编辑和查看。

1 个答案:

答案 0 :(得分:0)

我在PHP Quickstart文档中找到了此Google Calendar API指南。它提供了有关如何集成一个简单的PHP命令行应用程序的步骤,该应用程序向Google Calendar API发出请求。这可能有所帮助。

您可以通过调用calendarList.get方法查看日历。它返回用户日历列表中的条目。请参阅example

$updatedCalendarListEntry = service->calendarList->update($calendarListEntry->getId(), $calendarListEntry);

echo $updatedCalendarListEntry->getEtag();

然后,您可以通过调用calendarList:update方法编辑/更新用户日历列表中的条目。 Example

google.maps.event.trigger(map,'resize');

检查下面的GitHub示例: