Outlook-SDK-Android ( https://github.com/OfficeDev/Outlook-SDK-Android ) を使用して Outlook Calendar REST API ( https://msdn.microsoft.com/en-us/office/ office365/api/calendar-rest-operations )。
これまでのところ、次を使用して自分のカレンダーでイベントを取得できました。
import com.microsoft.services.outlook.fetchers.OutlookClient;
OutlookClient mClient;
...
mClient = new OutlookClient(outlookBaseUrl, mResolver);
...
mClient.getMe()
.getCalendarView()
.addParameter("startDateTime", startDate)
.addParameter("endDateTime", endDate)
.read()
これは、「https://outlook.office.com/api/v2.0/me/calendarView?startDateTime={start_datetime}&endDateTime={end_datetime}」に対応します。
- 読み取りアクセス許可を持っている他のユーザーの予定表に使用するには、Outlook のドキュメントで指定されている次の形式で同じことを行うにはどうすればよいですか?
(または " ..v2.0/USERS/meetingRoom@etc.com/CALENDARVIEW )
- OutlookClient を使用して、クエリ パラメータ "$select" を後者に追加するにはどうすればよいですか? (例: $select=Subject,Organizer,Start,End)