VS2010 WPF Google API日历V3插入事件

时间:2013-08-16 09:38:01

标签: wpf visual-studio-2010 google-calendar-api

我在VS 2010中创建了一个WPF应用程序并使用了Google API V3

我在

中遇到了这个问题
var CalEvt = mCalendarService.Events.Insert(new Event()
                    {
           Description = item.Body.Substring(0, Math.Min(30, item.Body.Length)),
           Start = new EventDateTime { DateTime = item.DueDateStart.ToString("o") },
           End = new EventDateTime { DateTime = item.DueDateEnd.ToString("o") },
           ETag = item.ExtractItemID.ToString(),
           Reminders = new Event.RemindersData() { Overrides = l, UseDefault = false }
           }, item.ExtractItemID.ToString()).Execute();

我得到的异常指定值不在有效的带引号的字符串中。

对于身份验证,我使用了以下代码     var auth = new OAuth2Authenticator(provider,GetAuthorization);

        BaseClientService.Initializer initializer = new BaseClientService.Initializer();
        initializer.Authenticator = auth;
        mCalendarService = new Google.Apis.Calendar.v3.CalendarService(initializer);

0 个答案:

没有答案