Python/exchangelib - How to access shared public folders and calendars
问题 How can I connect to a shared public folder using exchangelib? from exchangelib import DELEGATE, IMPERSONATION, Account, Credentials, ServiceAccount, \ EWSDateTime, EWSTimeZone, Configuration, NTLM, CalendarItem, Message, \ Mailbox, Attendee, Q, ExtendedProperty, FileAttachment, ItemAttachment, \ HTMLBody, Build, Version credentials = Credentials(username='DOMAIN\\username', password='password') config = Configuration(server='server', credentials=credentials, auth_type=NTLM, verify_ssl=False)