I want to export jquery fulcalendar events to google calendar in ical format. as there is option on google calendar to add events from url which has ical format.
Anyone how to do it?
There's no way to do this with just FullCalendar. Here is an article that explains how to integrate with Google Calendar from a back-end perspective. It served as my reference to making my own FullCalendar + Google Calendar app.
https://www.sitepoint.com/calendar-as-a-service-in-php-easy-with-google-calendar-api/
Related
Is there an example anywhere of using FullCalendar with a private (but shared) Google Calendar? OUr users are on our site and can be logged in with Google. Using FullCalendar they should be able to see any of our calendars that they're entitled to see. At the moment I can't find an example of how to use FullCalendar on a private Google Calendar.
Right now - if I'm signed in - I get this. You can see the normal embedded Google calendar above, and the FullCalendar result below. Google embed vs FullCalendar
The code is basically the code from the FullCalendar example page.
According to this documentation, you can insert a calendar into a users calendar list by a calendar id. However, what if the calendar is coming from a different endpoint? The endpoint we have downloads a .ics file.
This can be achieved manually by going to https://calendar.google.com/calendar/r/settings/addbyurl and pasting in the specified url. How can I achieve this using the API?
Are you sure the calendar you're inserting is a google calendar?
I think you might have to create/insert the calendar, and then import the events into it using your .ics file.
Inserting new calendar API: https://developers.google.com/calendar/v3/reference/calendars/insert
And then import if you have an iCalUID in the event info or insert otherwise. It's a lot less clean than just using the .ics file though. I suppose you could try to figure out what that part of the UI uses but I doubt it'll accept ad-hoc requests.
I am using fullcalendar on my website now and I'll need to be able to export it to Google Calendar. I know that fetching events from Google Calendar is possible with (fullcalendar.io/docs/google-calendar) but the converse doesn't seem to be that easy.
This might be possible: Exporting events to XML (export fullcalendar to google calendar, ical, etc) then XML to iCal, however both are rather dated tools so if there was a proper/working way that would be nice!
Customized event colors (foreground and background) are not preserved when you export a calendar since there is no reference on the generated ics file about them. When the calendar is imported from the ics file, all the event color settings are lost. Is there any way to preserve the event color information using the Google Calendar API ?. Thanks.
According to the post and further drilling down to this google calendar API post,
Google API calendar currently does support that.
I want to make Task in Google Calendar using Google Calendar API : c#.
Before that i manually tried to create Task in Google Calendar.But i didn't found it there.
So, My question is that if Task doesn't exist in Google then how Google Tool For Calendar migration manage it?
Thanx
Tasks exist in Google Calendar.
Look at the link below "Quick add" at your left.
See the long blue section below the dates display but above the calendar field where you place your events? Click there. You will get an invitation to create either an event, or a task. If you choose task, it will appear right in that blue panel.