如何使用 PHP 应用程序从 JIRA 获取数据?
如何使用 PHP 应用程序从 JIRA(错误跟踪工具)获取数据?可能吗? 谢谢, 萨加尔。
how to fetch data from JIRA (Bug tracking tool) using PHP application? is it possible or not?
Thanks,
Sagar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需检查这是否对您的查找有帮助:
http ://codingx.blogspot.com/2011/04/play-with-jira-api-from-php.html
Just check if this helps you in your find:
http://codingx.blogspot.com/2011/04/play-with-jira-api-from-php.html
有许多 PHP 客户端实现 SOAP 接口,因此您可以发布问题、创建用户、使用 JQL 执行搜索以及 API 提供的任何其他内容。 GitHub 上有这样一个项目: https://github.com/cpliakas/jira-client,它也可以作为 Composer 包在 Packagist.org 上获得,网址为 https://packagist.org/packages/cpliakas/jira。
There are a number of PHP clients that implement the SOAP interface so you can post issues, create users, execute searches using JQL, and anything else provided by the API. One such project is on GitHub at https://github.com/cpliakas/jira-client, and it is also available as a Composer package on Packagist.org at https://packagist.org/packages/cpliakas/jira.
您最好的选择可能是使用 jira 的 SOAP api
http://confluence.atlassian.com/display/JIRADEV/JIRA+RPC+Services
您最好的选择可能是尝试内置的 php肥皂客户端。
Your best bet is probably to use the SOAP api for jira at
http://confluence.atlassian.com/display/JIRADEV/JIRA+RPC+Services
Your best bet is probably to try the built in php soap client.