2

我想使用 ms office communicator client apis,我想在 python 中使用那些可以吗?

4

3 回答 3

2
>>> 导入 win32com.client
>>> msg = win32com.client.Dispatch('Communicator.UIAutomation')
>>> msg.InstantMessage('user@domain.com')

于 2010-09-20T19:21:58.810 回答
1

有一个 JSON API 可以通过“office communicator web access”访问所有的office communicator 功能。您可以下载该 API 的说明。但是还没有人实现模块。API 非常复杂。

于 2010-05-05T22:22:41.523 回答
0

我不太了解 MS Office 通信器,但如果它公开了 COM 接口,您应该能够通过 COM 的 Mark Hammond python 绑定访问它http://starship.python.net/crew/skippy/

否则,如果它公开了一个 .NET API,您应该能够使用 IronPython 访问它

我希望它有帮助

于 2010-02-18T08:30:16.847 回答