fullcalendar 没有从 google 日历中获取事件
fullcalendar not getting events from google calendar
fullcalendar 没有从 google calendar 中检索事件,我读到 google calendar 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 日起,google 关闭他们日历的 V1 和 V2 API's.For 完整日历以使用 Google 日历升级到最新版本FullCalendar 或至少用此文件 github.com/arshaw/fullcalendar/blob/v1.x/gcal.js 替换 gcal.js 。在上面的代码中,您必须在 eventSources 中包含 googleCalendarApiKey 和 googleCalendarId。检查此 link fullcalendar.io/docs1/google_calendar 以获得文档
fullcalendar 没有从 google calendar 中检索事件,我读到 google calendar 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 日起,google 关闭他们日历的 V1 和 V2 API's.For 完整日历以使用 Google 日历升级到最新版本FullCalendar 或至少用此文件 github.com/arshaw/fullcalendar/blob/v1.x/gcal.js 替换 gcal.js 。在上面的代码中,您必须在 eventSources 中包含 googleCalendarApiKey 和 googleCalendarId。检查此 link fullcalendar.io/docs1/google_calendar 以获得文档