2
GData API for Google Calendar in Javaを使用してGoogleカレンダーに接続するAndroidアプリを開発しています。これまではイベントを作成していましたが、タイトル、説明、時間のみを設定できました。GoogleカレンダーAPI:新しいイベントプロパティ
私はイベントに設定できるすべてのパラメータを持つリファレンスまたはサンプルをどこから見つけることができますか?
私はこれまでに達成したことのいくつかのコードを残します。
CalendarService calendarService = new CalendarService("CalendarAPP");
calendarService.setUserCredentials(<username>, <password>);
URL postUrl = new URL("https://www.google.com/calendar/feeds/<GMAIL ACCOUNT>/private/full");
CalendarEventEntry myEntry = new CalendarEventEntry();
myEntry.setTitle(new PlainTextConstruct("Tennis with Beth"));
myEntry.setContent(new PlainTextConstruct("Meet for a quick lesson."));
DateTime startTime = DateTime.now();
DateTime endTime = DateTime.now();
When eventTimes = new When();
eventTimes.setStartTime(startTime);
eventTimes.setEndTime(endTime);
myEntry.addTime(eventTimes);
CalendarEventEntry insertedEntry = connection.getCalendarService().insert(postUrl, myEntry);
ありがとうございます。
ミキワン。