Issus
Issus

Reputation: 39

Google public calendar link doesn't work (fullcalendar)

I want to use the "fullcalendar" on my site to generate public cal.

So, I've generated an XML link:

http://www.google.com/calendar/feeds/funky-flava.com_gtuilvhr9dnft0ututonqg51b0%40group.calendar.google.com/public/basic

And when I init it in the "event" section it's doesn't work...

$('#calendar').fullCalendar({
    events: 'http://www.google.com/calendar/feeds/funky-flava.com_gtuilvhr9dnft0ututonqg51b0%40group.calendar.google.com/public/basic'
});

Ready link looks like this:

http://www.google.com/calendar/feeds/funky-flava.com_gtuilvhr9dnft0ututonqg51b0%40group.calendar.google.com/public/full?alt=json-in-script&callback=jQuery18104237642253283411_1347107892685&start-min=2012-08-26T00%3A00%3A00Z&start-max=2012-10-07T00%3A00%3A00Z&singleevents=true&max-results=9999&_=1347107892732</pre></code>

Upvotes: 0

Views: 672

Answers (1)

Devon
Devon

Reputation: 213

Google has deprecated their v2 api as of Nov. 17 see http://googleappsupdates.blogspot.ca/2014/06/calendar-gdata-api-google-calendar.html

This will affect all applications targetting the v2 API which fullcalendar does at this point.

Upvotes: 5

Related Questions