gpt4 book ai didi

java - 如何在 Java 中从 Google 日历获取事件?

转载 作者:行者123 更新时间:2023-12-01 15:43:23 24 4
gpt4 key购买 nike

我使用此代码获取 Google 日历列表:

// Create a CalenderService and authenticate
CalendarService myService = new CalendarService("exampleCo-exampleApp-1");
myService.setUserCredentials("j...@gmail.com", "mypassword");

// Send the request and print the response
URL feedUrl = new URL("https://www.google.com/calendar/feeds/default/allcalendars/full");
CalendarFeed resultFeed = myService.getFeed(feedUrl, CalendarFeed.class);
System.out.println("Your calendars:");
System.out.println();
for (int i = 0; i < resultFeed.getEntries().size(); i++) {
CalendarEntry entry = resultFeed.getEntries().get(i);
System.out.println("\t" + entry.getTitle().getPlainText());
}

此代码返回我的日历列表,但我需要从此日历中获取有关今天的所有事件。我怎样才能做到这一点?

最佳答案

如果您首先使用示例程序,请使用 ..../private/full 从日历中获取事件。

例如:

"https://www.google.com/calendar/feeds/xxx@gmail.com/private/full");

关于java - 如何在 Java 中从 Google 日历获取事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7621309/

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