Googleカレンダーの特定のカレンダーにイベントを追加しようとしていますが、方法がわかりません。これが私のコードです:
CalendarService service = new CalendarService("MyTEst");
service.setUserCredentials("Username", "Password");
EventEntry entry = new EventEntry();
// Set the title and content of the entry.
entry.Title.Text = "title";
entry.Content.Content = "test";
// Set a location for the event.
Where eventLocation = new Where();
eventLocation.ValueString = "Location";
entry.Locations.Add(eventLocation);
When eventTime = new When(DateTime.now, DateTime.now.AddDays(2));
entry.Times.Add(eventTime);
Uri postUri = new Uri("http://www.google.com/calendar/feeds/default/private/full");
// Send the request and receive the response
AtomEntry insertedEntry = service.Insert(postUri, entry);
誰かがこれで私を助けることができますか?
編集
たぶん、この機能は、ランデブーとメモをグーグルカレンダーに簡単に追加したいサイトの管理者だけがアクセスできるので、「ハードコードされた」値で自動的に認証されたので、ユーザー名とパスワードはわかった。