Fullcalendar无法从Google日历中获取事件



fullcalendar不是从Google日历检索事件,我读到Google日历API不再支持fullcalendar了?我不知道这是不是真的。

这是我的代码

$(function () {
 $('#calendar').fullCalendar({
 header: {
  left: 'prev,next today',
  center: 'title',
  right: 'month,agendaWeek,agendaDay'
},
buttonText: {
  today: 'today',
  month: 'month',
  week: 'week',
  day: 'day'
},
googleCalendarApiKey: 'myApi',
eventSources: {
  googleCalendarId: 'example@gmail.com'
  }
 })
});

使用下面的代码

 eventSources: [
   { googleCalendarApiKey: 'your api key',
   googleCalendarId: 'email@gmail.com',
   className: 'fc-event-email'}];

从2014年11月17日起,谷歌关闭了V1和V2的日历API。要使完整日历与Google日历一起工作,请升级到最新版本的FullCalendar或至少将gcal.js替换为以下文件github.com/arshaw/fullcalendar/blob/v1.x/gcal.js。在上面的代码中,你必须在eventSources中包含googleCalendarApiKey和googleCalendarId。请查看此链接。Io/docs1/google_calendar for documentation

相关内容

  • 没有找到相关文章

最新更新