我正在使用 Outlook-SDK-Android ( https://github.com/OfficeDev/Outlook-SDK-Android ) 与 Outlook 日历 REST API ( https://msdn.microsoft.com/en-us/office/ office365/api/日历休息操作)。
到目前为止,我已经能够使用以下方法在我自己的日历上获取事件:
import com.microsoft.services.outlook.fetchers.OutlookClient;
OutlookClient mClient;
...
mClient = new OutlookClient(outlookBaseUrl, mResolver);
...
mClient.getMe()
.getCalendarView()
.addParameter("startDateTime", startDate)
.addParameter("endDateTime", endDate)
.read()
- 为了将它用于我具有读取权限的其他用户日历,我如何以 Outlook 文档中指定的以下格式实现相同的功能?
(或“ ..v2.0/USERS/meetingRoom@etc.com/CALENDARVIEW)
- 如何使用 OutlookClient 将查询参数“$select”添加到后者?(例如。$select=主题、组织者、开始、结束)