使用Exchange Web服务API
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Exchange Web服务API相关的知识,希望对你有一定的参考价值。
In order for the code snippet(s) to work, you need to do the following:1. Go download the EWS API SDK: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=c3342fb3-fbcc-4127-becf-872c746840e1
2. Install the SDK on your machine. It will install a .dll .xml and walkthrough guide to C:Program FilesMicrosoftExchange...
3. Open up your VS project solution and add a reference to the installed DLL
It's important to note that you should use the service.AutodiscoverUrl instead of service.Url because the URL you use may not be the correct URL down the line (due to redirection). If you are using service.Url and you call a method and get a 405 error, switch to the AutodiscoverUrl method instead.
//add the following required namespaces: using Microsoft.Exchange.WebServices.Data; using System.Net.Security; using System.Security.Cryptography.X509Certificates; //create a callback required for the AutodiscoverUrl method: private static bool ValidateRedirectionUrlCallback(string url) { //Validate the URL and return true to allow the redirection return true; } private ExchangeService(string EmailAddress) { service.AutodiscoverUrl(EmailAddress, ValidateRedirectionUrlCallback); return service; } //example of using this service to set an appointment public void SetAppointment() { ExchangeService service = ExchangeService("<email service>"); appt.Subject = "<subject>"; appt.Body = "<body>"; appt.Start = DateTime.Now; appt.End = DateTime.Now.AddHours(2); appt.Save(WellKnownFolderName.Calendar); }
以上是关于使用Exchange Web服务API的主要内容,如果未能解决你的问题,请参考以下文章
Exchange Web 服务 - 如何使用 Account 扩展属性检索联系人
用于不知名文件夹名称的 Exchange Web 服务 FolderId
如何使用 Exchange Web 服务为其他用户查找日历项目