bfredo123
bfredo123
I have tried the following (from the Microsoft example): ``` var exch = new ews.ExchangeService(ews.ExchangeVersion.Exchange2010_SP1); exch.Credentials = new ews.WebCredentials(user.email, user.password); exch.Url = new ews.Uri(user.url); let meeting = new ews.Appointment(exch) meeting.Subject="my...
My bad, I have found in https://github.com/gautamsi/ews-javascript-api/issues/122 that I should use `new ews.MessageBody("body")` to set the body.
I have actually seen the answer here: https://github.com/tinymce/tinymce/issues/8037 As you ask for use cases, here is mine: I would like to let the users of my app design web forms...
Investigating further on the 'CreateItem' request sent, I could find some differences in the headers: - The C# working version has no "Authoriszation: ' Basic ..." header (and the Node...
Am I the only one have this issue? If anyone has any clue, even if it's not a solution, I would greatly appreciate any feedback: it might help me to...
Thanks Cimchd, I feel less alone.
Thank you Gautamsi, the C# code above works. Could it work if NTLM is required?
Thank you so much, will give a try (I have zero skills on ntlm, hope I won't be stuck due to this)
Great news, thanks to the xhr package I could make it work, thank you again! Now, I would like to use the autodiscover, but it does not work: ``` const...
Softly asking again in case my last question was skipped :) Many thanks again for the help provided already!