我想列出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实例的事件。
你们中有人有经验吗?