icalendar

Google Calendar errors on importing .ics file

左心房为你撑大大i 提交于 2019-12-10 16:57:11
问题 I'm having a hard time getting my subscription calendar to work with Google Calendar. The following URL works correctly with Outlook and Apple Calendar (iCal), but I get an error from Google - "The address that you provided did not contain a calendar in a valid iCal or GData format." My URL passes validation on the following validators (icalvalid.cloudapp.net/ and severinghaus.org/projects/icv/) Can anyone provide any idea what is wrong? Here is the URL: https://beta.vcallboard.com/calls

PHP: iCal creations, how to make a new line in a description

心已入冬 提交于 2019-12-10 15:54:07
问题 I'm using the following to create a calendar invite for outlook for a php script. However the \n doesn't give me a new line in outlook. Is there a way to do this? Seems silly if you can't! function addToCalendar($calEmail, $calSubject, $calDesc) { $calEmail = 'freelance@skinzy.org'; $description = $calDesc; $message="BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VEVENT DTSTART:20110718T121000Z DTEND:20110718T131000Z DTSTAMP:20110525T075116Z ORGANIZER;CN=TOMS TEST:mailto

ICS file Download fails on iPhone Chrome with “Unknown File Type”

我们两清 提交于 2019-12-10 14:54:08
问题 I've got a php script that's auto-generating an ics file for a mobile web app. Using Chrome on my Win7 desktop, the ics file downloads fine, and Outlook likes it. Using Safari on my iPhone, the ics file opens the calendar app as expected, and allows me to add to calendar. Using Chrome on my iPhone, I get "Download Failed. Chrome cannot download this file. Error 102 (): Unkown File Type." I'm sending these headers: header("Content-Type: text/Calendar; charset=utf-8"); header("Content

How to Exclude a particular Date while creating a Recurring Event in Ical Outlook Calendar

試著忘記壹切 提交于 2019-12-10 11:47:42
问题 I want to Create a recurring Ical Event in Outlook and I have used RRule please see below RRULE;BYDAY=SU;WKST=MO:FREQ=MONTHLY;INTERVAL=1;UNTIL=20151204T110000 So above will make an event every 04th of month until December 2015 Now in Outlook calendar I dont want to create event on October 4th. Say like it is a recurring event from September to December on 4th Date, But I dont want event to be cerated in October. How to achieve this? Can we exclude any date while making recurring event/ any

Google Calendar API + email notification ics file

ぃ、小莉子 提交于 2019-12-10 11:35:31
问题 I'm creating events on google calendar using the Google Calendar API, which is working fine. When I modify one of those events within Google Calendar, Google can email me an even update with an .ics file. Is there a way determine the eventid via the email or ics file, and tie it back to the eventid when i created the event using the API? For example, I want to automatically receive event change emails sent from Google Calendar, and update the event in my database (where I store the eventid

Is there a standard and an implementation for Icalendar event RSVP

我怕爱的太早我们不能终老 提交于 2019-12-10 11:18:09
问题 The summary is that I am now implementing an event confirmation system and can't find the right format for the ICalendar replies. Therefore I wonder if there is an example out there of complete REPLY message and maybe a PHP library that would wrap it all? Now for the details, we get external emails including event invitations asking for RSVP. Here is an excerpt of the iCal file: ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN="'user@company.com'":MAILTO:user@company.com

iCal - Remote query filter

蹲街弑〆低调 提交于 2019-12-10 11:03:38
问题 Maybe dumb question but I'm wondering how iCal clients query a remote calendar. I've just created a little web service that generates an iCal file. This file is successfully interpreted by Google Calendar and Lightning (new Sunbird). But I'm not filtering on any range of time. I imagine that Google and Sunbird clients gives parameters to filter on dates at least. How can I know what are these parameters ? Is it part of the iCal RFC ? Can someone point me to the good direction ? 回答1: When you

Outlook 2003 does not import .ics calendar while outlook 2007 does

岁酱吖の 提交于 2019-12-10 10:17:07
问题 I have an .ics file I manually create with PHP like the following: BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN VERSION:2.0 METHOD:PUBLISH X-MS-OLK-FORCEINSPECTOROPEN:TRUE BEGIN:VEVENT CLASS:PUBLIC DESCRIPTION:Some description here LOCATION:Scheduled PTO DTEND;VALUE=DATE:20101104 DTSTART;VALUE=DATE:20101103 PRIORITY:5 SEQUENCE:0 SUMMARY;LANGUAGE=en-us:PTO - 8.00 hour(s) X-MICROSOFT-CDO-ALLDAYEVENT:TRUE X-MICROSOFT-MSNCALENDAR-ALLDAYEVENT:TRUE END:VEVENT END

Objective C- iCal not creating custom calendar and new event to it in iOS 9

╄→гoц情女王★ 提交于 2019-12-10 08:53:43
问题 This working perfectly in iOS 8. But creating issue in iOS 9.Here is code : self.eventManager.eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted, NSError *error) { if (granted) { // Create a new calendar. EKCalendar *calendar = [EKCalendar calendarForEntityType:EKEntityTypeEvent eventStore:self.eventManager.eventStore]; // Set the calendar title. calendar.title = @"<APP name>"; calendar.CGColor=APP_Blue_COLOR.CGColor; // Find the proper source type value. for

Export event with C# to iCalendar and vCalendar format

ぃ、小莉子 提交于 2019-12-10 06:03:07
问题 I'm working on a project where we'll be supporting the ability to export an event to Outlook 2007, Outlook 2010, and iCal. I've done some research and found that iCal (to support the iCal program) and vCal (to support Outlook) are basically the same thing, from what I've seen. It appears that iCal is based on the old vCal format, so I'm trying to see what I can borrow between the two implementations to make it easier to generate .ics and .vcs files. I've found a C# implementation for a vCal