fullcalendar not getting events from google calendar -


fullcalendar not retrieving events google calendar, read google calendar api not support fullcalendar anymore?.i don't know if true.

here code

$(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'   }  }) }); 

update

make work using code

 eventsources: [    { googlecalendarapikey: 'your api key',    googlecalendarid: 'email@gmail.com',    classname: 'fc-event-email'}]; 

from nov 17th 2014, google shutdown v1 , v2 of calendar api's.for full calendar work google calendar upgrade latest version of fullcalendar or @ least replace gcal.js file github.com/arshaw/fullcalendar/blob/v1.x/gcal.js . in above code, have include googlecalendarapikey , googlecalendarid inside eventsources. check link fullcalendar.io/docs1/google_calendar documentation


Comments

Popular posts from this blog

java - Andrioid studio start fail: Fatal error initializing 'null' -

android - Gradle sync Error:Configuration with name 'default' not found -

StringGrid issue in Delphi XE8 firemonkey mobile app -