Office365日历Api-列出会议室中的事件

时间:2018-06-21 13:20:19

标签: outlook-restapi

我想列出Office365日历的会议室中保留的所有会议。 我尝试使用let ref = Database.database().reference() let userID = Auth.auth().currentUser?.uid ref.child("users").child(userID!).observeSingleEvent(of: .value, with: { (snapshot) in let value = snapshot.value as? NSDictionary let username = value?["username"] as? String ?? "" let user = User(username: username) }){ (error) in print(error.localizedDescription) } ,但返回错误401 Unauthorized。 我尝试使用https://outlook.office.com/api/v2.0/users/{user mail address}/calendarview?startDateTime={start_datetime}&endDateTime={end_datetime},但它仅返回该Calendar实例的事件。 你们中有人有经验吗?

1 个答案:

答案 0 :(得分:0)

经过长时间的研究和大量的工作,我发现使用Exchange Web Services是最佳解决方案。

有关this link

的更多信息