阅读谷歌公共日历

时间:2011-07-12 15:49:56

标签: google-calendar-api

我需要阅读谷歌日历的RSS源。它可以在网站上公开获得 如何通过RSS feed获取日历事件?

1 个答案:

答案 0 :(得分:0)

使用Google Calendar API JSON输出的示例

http://www.google.com/calendar/feeds/developer-calendar@google.com/public/full?alt=json-in-script&callback=insertAgenda&orderby=starttime&max-results=15&singleevents=true&sortorder=ascending&futureevents=true
  

这将使用名为insertAgenda的回调函数检索jSON格式(alt = json-in-script)的developer-calendar@google.com日历的公共供稿的完整预测。返回最多15个事件(max-results = 15),周期性事件表示为单个事件(singleevents = true),将来所有事件(futureevents = true)按升序返回(sortorder = ascending)。 / p>

来源:https://developers.google.com/gdata/samples/cal_sample