-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetching calendar items not implemented? #17
Comments
let me work on this later this week. probably over weekend. if you just want availability, you can try GetUserAvailability of ExchangeService object. |
I have published a release on GitHub (not npm) https://github.com/gautamsi/ews-javascript-api/releases/tag/test-0.2.3-pre Get latest pre-release and you can install tgz file in npm. let me know if this helps. Have only tested by running |
Thank you! Having troubles making it work in browser though. Will try running from node. |
I can give you build for browser, it is not going to help. Exchange EWS does not support HTTP OPTIONS verb, this means browser xhr is going to fail due to pre call. only way you can test is to run Google Chrome with unsafe (CORS disabled you can sure swap out
|
Aha, I see. |
Hi, I am trying to do the same thing, using the npm module, and the tar file mentioned above. I have tried both ExchangeService.FindAppointments and the CalendarFolder. Neither works for me. I really could use a hint. I apologize, I am new to EWS. Note, my Exchange server is 2010. Here is my test script:
Here is the version that binds to CalendarFolder:
|
Never mind, I found one answer here: |
@AlexSugak see #190 if you want browser based script, still have to use webpack like optimizer. CORS is still the issue. but you can run in Electron/Nwjs renderer process (webview) |
Hello,
I am trying to fetch calendar appointments using FindAppointments (or FindItems) method.
It looks like CalendarView has no implementations for required xml serialization methods yet, so this doesn't work.
Is there another way to search for meetings by date range?
If not, could you please give a hint on proper implementation of CalendarView's required methods (I am new to TypeScript and EWS)?
The text was updated successfully, but these errors were encountered: