jira SOAP和XMLRPC

时间:2010-07-27 00:23:17

标签: python xml json api jira

我想知道是否有可以对jira进行各种通话的网址。得到问题,获得用户。它们在xml中的格式是什么? JSON?

我想在python中编写一个包装类。我看到SOAP api exsists但在python中找不到任何方法定义。我发现java很容易。

感谢您的帮助。

请,谢谢你。

3 个答案:

答案 0 :(得分:3)

Atlassian网站上有样品。

使用SOAP客户端与Jira进行交互:

http://confluence.atlassian.com/display/JIRA/Creating+a+SOAP+Client

并使用xml-rpc与Jira进行交互:

http://confluence.atlassian.com/display/JIRA/Creating+a+XML-RPC+Client

还要查看他们对API的文档:

http://confluence.atlassian.com/display/JIRA/JIRA+XML-RPC+Overview

答案 1 :(得分:3)

请看一下:http://blog.sophilabs.com/2011/08/overcoming-jira-3-13-x-remote-access-limitations-part-ii/

这是克服JIRA RPC限制的一个很好的替代方案。

答案 2 :(得分:0)

Atlassian建议REST API远程与Jira通信。它在Jira 5.0及更高版本中受支持。它们仍然支持SOAP API,但不会在那里实现任何新功能。

要在Python中使用SOAP API,您可以使用任何SOAP客户端库 - What's the best SOAP client library for Python, and where is the documentation for it?

以下是Python中使用REST Web服务的示例 - http://developer.yahoo.com/python/python-rest.html