gpt4 book ai didi

php - 谷歌日历 API : Selecting/Creating calendars?

转载 作者:IT老高 更新时间:2023-10-29 00:19:18 24 4
gpt4 key购买 nike

因此,我希望我们的工作日历在日程安排经理发布/更新日程安排时自动与每位员工的 Google 日历同步。用户最初会使用 AuthSub token 选择加入,但之后它应该是自动的。为了避免与他们安排的其他事件发生冲突,我想创建一个名为“工作应用程序”或其他相当独特的新日历。然后对于更新,它会在创建新事件之前简单地删除该范围内的任何事件。所以我有一些问题...

  1. 如何使用 API 选择我想要的特定日历? (顺便说一下,这一切都在 PHP 中,使用 Zend Framework)。我看到在哪里可以查询日历列表,但文档没有显示如何添加到该特定日历。

  2. 我可以创建日历吗?我是否只需要让选择加入的用户创建这样的日历?如果是这样,我是否可以为他们生成一个 URL 来创建一个 URL,就像添加事件一样? (任何使事情变得简单和一致的东西,对吧?)

  3. 显然,我不希望用户存储他们的凭据,但我也不希望为每次更新请求访问权限。我是否需要 OAuth token 才能持久访问?我知道 URL token 是一次性使用的,但我可以存储 session token 并在一周后重复使用吗?

  4. 除了查询每个事件之外,还有其他方法可以避免重复吗?我昨晚对此进行了测试,现在我有 7 个相同的 50 个事件的实例。我不想在每次添加之前通过检查来添加服务器时间。

  5. 最后,有没有办法添加多个事件,甚至可以简单地将 ics 文件推送到日历。现在,我让脚本执行 SQL 查询并在循环遍历结果时添加每个事件。这似乎比预期花费的时间要长得多,所以只构建 ics 文件或将所有事件添加到一个对象并一次添加它们会更好。谢谢!

最佳答案

好吧,既然没有人回答,我决定开始研究 Google 日历 API 的非 PHP 文档,特别是 .NET 的东西和原始协议(protocol)的一些内容。你不知道吗...

如果您查看 .NET 文档,它会提到很酷的 功能,特别是如何为经过身份验证的用户创建新的非主日历以及如何向非主日历添加事件- 主日历。

当然,该文档在 PHP 领域中没有出现,而且似乎没有一对一的关联。对于新日历的创建,我首先尝试了一些明显的东西,然后,为了破产,尝试了一些不太明显但有效的东西。我想我会分享一下,以防 radio 沉默的原因是没有人知道答案,但肯定想知道。

创建新日历:

这有两个关键:

  1. 你必须使用相同的方法来添加日历事件,即insertEvent()

  2. 您必须在方法中设置发布 URL,否则将转到默认提要 URL。

此示例检查应用日历是否已存在,如果不存在,则创建它:

 //Standard creation of the HTTP client
$gdataCal = new Zend_Gdata_Calendar($client);

//Get list of existing calendars
$calFeed = $gdataCal->getCalendarListFeed();

//Set this to true by default, only gets set to false if calendar is found
$noAppCal = true;

//Loop through calendars and check name which is ->title->text
foreach ($calFeed as $calendar) {
if($calendar -> title -> text == "App Calendar") {
$noAppCal = false;
}
}

//If name not found, create the calendar
if($noAppCal) {

// I actually had to guess this method based on Google API's "magic" factory
$appCal = $gdataCal -> newListEntry();
// I only set the title, other options like color are available.
$appCal -> title = $gdataCal-> newTitle("App Calendar");

//This is the right URL to post to for new calendars...
//Notice that the user's info is nowhere in there
$own_cal = "http://www.google.com/calendar/feeds/default/owncalendars/full";

//And here's the payoff.
//Use the insertEvent method, set the second optional var to the right URL
$gdataCal->insertEvent($appCal, $own_cal);
}

你有它。下一个目标是将事件插入该日历,而不是默认日历。

向非主日历添加事件

您可能猜到的简单部分是您需要再次设置该可选 URL,例如:insertEvent($newEvent, $calURL),棘手的部分是获取日历的 URL。与“拥有的日历”路径不同,特定的日历不仅包含用户特定的信息,而且还包含某种哈希查找 ID。

代码如下:

 //Set up  that loop again to find the new calendar:
$calFeed = $gdataCal->getCalendarListFeed();
foreach ($calFeed as $calendar) {
if($calendar->title->text == "App Calendar")
//This is the money, you need to use '->content-src'
//Anything else and you have to manipulate it to get it right.
$appCalUrl = $calendar->content->src;
}

//.......... Some Assumed MySQL query and results .............

while ($event = $result->fetch_assoc()) {
$title = $event['description'];

//Quick heads up
//This is a handy way of getting the date/time in one expression.
$eventStart = date('Y-m-d\TH:i:sP', strtotime($event['start']));
$eventEnd = date('Y-m-d\TH:i:sP', strtotime($event['end']));

$newEvent = $gdataCal->newEventEntry();
$newEvent->title = $gdataCal->newTitle($title);
$when = $gdataCal->newWhen();
$when->startTime = $eventStart;
$when->endTime = $eventEnd;

$newEvent->when = array($when);

//And at last, the insert is set to the calendar URL found above
$createdEvent = $gdataCal->insertEvent($newEvent, $appCalUrl);
}
echo "<p>".$result->num_rows." added to your Google calendar.</p>";

感谢所有阅读我的问题并对此进行思考的人。如果有人知道收紧上述代码的方法(也许我不需要两个循环?)我很想得到反馈。

关于php - 谷歌日历 API : Selecting/Creating calendars?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1534373/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com