This question about Using an extension: Asked
Google Calendar Integration
I would like to use
JQFullCalendarPlugin, and was able to use the example to create static events. However, I would like to instead read from a google calendar address and display the results. I cannot figure out how to get a feed. In fullcalendar's documentation, they use googleCalendarId, but where does this go with this extension?
--
GeraudK - 31 Jan 2023
I found the answer myself: simply add it the FULLCALENDAR macro. You need both:
- google_calendar_api_key
- events (which is your calendar)
No need to tell the code it needs to use the Google Calendar plugin, this is done automatically.
For instance, using fullcalendar.io's example of the US vacations:
%FULLCALENDAR{
"mycal"
editable="false"
first_day="1"
initial_view="dayGridMonth"
google_calendar_api_key="AIzaSyDcnW6WejpTOCffshGDDb4neIrXVUA1EAE"
events="en.usa#[email protected]"
}%
--
GeraudK - 01 Aug 2024