英文:
How to create POST request to Jira
问题
我需要创建一个与Jira交互的应用程序(它应该解析Excel文件并将数据输入Jira)。
我最初的想法是使用REST API。然而,似乎Jira没有REST API,我不确定在这种情况下是否可能/适用这种方法,或者是否存在更好的解决方案(比如HttpURLConnection
)。
我会欣赏任何想法。
英文:
I need to create application which interacts with Jira (it should parse Excel file and input data into Jira).
My first guess is to use REST API. However, it seems that there is no REST API for Jira and I'm not sure whether whether such approach is possible/eligable in this case or some better solution exists (like HttpURLConnection
).
I will appreciate any thoughts.
答案1
得分: 1
一个适用于Jira的REST API可供使用 - 这里是REST API介绍的链接 https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/
英文:
A REST API is available for Jira - here's a link to the REST API intro https://developer.atlassian.com/cloud/jira/platform/rest/v2/intro/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论