Is there a way to programmatically import ICS into Google Calendar?
I have created a simple open source .net utility to do just that, available at http://gcalicsimporter.codeplex.com/.
I have created a simple open source .net utility to do just that, available at http://gcalicsimporter.codeplex.com/.
Google provides a great JS client library that works with all of Google’s discovery-based APIs (such as Calendar API v3). I’ve written a blog post that covers the basics of setting up the JS client and authorizing a user. Once you have the basic client enabled in your application, you’ll need to get familiar with … Read more
Found out by adding this to your url parameters approval_prompt=force Update: Use access_type=offline&prompt=consent instead. approval_prompt=force no longer works https://github.com/googleapis/oauth2client/issues/453
Here’s an example link you can use to see the format: https://www.google.com/calendar/render?action=TEMPLATE&text=Your+Event+Name&dates=20140127T224000Z/20140320T221500Z&details=For+details,+link+here:+http://www.example.com&location=Waldorf+Astoria,+301+Park+Ave+,+New+York,+NY+10022&sf=true&output=xml Note the key query parameters: text dates details location Here’s another example (taken from http://wordpress.org/support/topic/direct-link-to-add-specific-google-calendar-event): <a href=”http://www.google.com/calendar/render? action=TEMPLATE &text=[event-title] &dates=[start-custom format=”Ymd\\THi00\\Z”]/[end-custom format=”Ymd\\THi00\\Z”] &details=Link to add to Google calendar &location=[location] &trp=false &sprop= &sprop=name:” target=”_blank” rel=”nofollow”>Add to my calendar</a> Here’s a form which will help … Read more