问题
Using .Net API wrapper for Google Calendar API.
- First get primary calendar id
- Get timezone of primary calendar (returns good data, e.g., "America/Los_Angeles")
- Create a calendar event. Set start time and end time. Set timezone.
Dim eStart As New EventDateTime eStart.DateTime = _startAt eStart.TimeZone = GoogleTimeZone Dim eEnd As New EventDateTime eEnd.DateTime = _endAt entry.Start = eStart entry.End = eEnd eEnd.TimeZone = GoogleTimeZone CalService.Events.Insert(entry, calendarid).Execute()
But the events are being created at 3am when the start time specified is 11am.
Google API documentation states "A time zone offset is required unless a time zone is explicitly specified in timeZone" and for timezone "The time zone in which the time is specified. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".)".
Timezone value is being specified properly.
Basically, it is not making any difference whether or not timezone is specified. Event is created in GMT in google calendar. What is wrong here?
回答1:
Fixed it (or let's just say hacked it). Google .Net API wrappers are absolutely crap (and this goes to wrapper of all of their APIs and not just Calendar API).
The issue was that event.Start
and event.End
automatically converts dates and add a "Z" at the end. This tells Google that the date is in GMT format. There is no reason for putting a "Z" because even without it, Google considers GMT. So basically, event.TimeZone=value
was being disregarded because the time was appended by "Z".
After I removed the "Z", everything worked ok.
entry.Start.DateTimeRaw = replace(entry.Start.DateTimeRaw,"Z","")
entry.End.DateTimeRaw = replace(entry.End.DateTimeRaw,"Z","")
回答2:
I fixed it by creating an instance of a DateTime object that uses the DateTimeKind
enum as one of the constructors. I found the default DateTime.Kind
property value is DateTimeKind.Utc
when deserializing a JSON date. That's why a Z (UTC) value is in the Raw for me. The time zone value will be correct when DateTimeKind.Local is applied to the DateTimeKind argument in one of the constructors that takes it.
DateTime dt = new DateTime(oldDateTime.Ticks, DateTimeKind.Local);
DateTime dt = new DateTime(yearVar, monthVar, dayVar, hourVar, minuteVar, secondVar, DateTimeKind.Local);
回答3:
Instead of setting the Datetime
property that is part of the Start
and End
objects, you should give the DateTimeRaw
a value and assign a timezone to it like this:
eventItem.Start = new EventDateTime()
{
DateTimeRaw = input.Start.ToString("yyyy-MM-ddTHH:mm:ss"),
TimeZone = "America/New_York"
};
Noticed that I'm not adding a Z or any timezone representation at the end of the string format. That should fix the issue and should prevent google from ignoring the timezone property when you've set a value.
In addition, if you hover over the DateTime
property of the Start
or End
object in Visual Studio, it is described as the following: DateTime representation of EventDateTime.DateTimeRaw
(see image).
Which in this case, replacing the Z
value for an empty string will only make the problem worst because your DateTime
property will also be updated. I hope this is helpful to anyone in the future.
来源:https://stackoverflow.com/questions/28519285/google-calendar-api-v3-time-zone-issues