For some reason I'm having a hard time getting fullcalendar to work using the google api. The calendar displays but no events are showing. Google developer console is not showing any requests. I've generated my api key and my calendar is public (I've double check a thousand times!) Could someone please check this code and tell me what I'm doing wrong! Using Fullcalendar v2.3.2
<link rel="stylesheet" href="css/style.css">
<link rel='stylesheet' href='css/fullcalendar.css' />
<script src='js/jquery.min.js'></script>
<script src='js/moment.min.js'></script>
<script src='js/fullcalendar.js'></script>
<script type='text/javascript' src='js/gcal.js'></script>
<script src="js/calendar-events.js"></script>
<script type='text/javascript'>
$(document).ready(function() {
$('#calendar').fullCalendar({
googleCalendarApiKey: 'AIzaSyAl9hbpRJO_xVWj2RIZ1l0BwrvgwgMaWZg',
events: {
googleCalendarId: '[email protected]'
}
});
});
</script>