1

我在 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);
4

0 回答 0