如何使用JavaScript从微软交换服务器访问邮件?

时间:2016-08-29 19:46:05

标签: javascript node.js

我正在尝试使用电子来构建一个桌面应用程序来检索来自特定邮箱(微软交换服务器)的邮件,现在,我已经环顾四周并阅读邮箱连接应该在服务器端完成(问题是由一个人做的建立一个基于网络的应用程序,有点类似于我想做的事情),但是,因为我不是真的部署节点js服务器而是使用电子,据我所知,就像桌面应用程序版本一样节点,我不知道采取哪种方法。我应该使用api吗?微软有没有这个接口?或者我应该使用第三方集成吗?

1 个答案:

答案 0 :(得分:2)

It looks like the Exchange Web Services API is only provided as a CLR assembly, so if you wanted to use it you'd need to:

  • write a C# console app that you then spawn from your Electron app (and communicate via stdin/stdout), or
  • use the EWS API in your Electron app via Edge.js

Alternatively, you could probably just directly communicate with the exchange server using SOAP messages, but that could be a bit tedious to implement.