我需要检索与 jira 中的特定问题相关的所有版本(如修复版本、确认版本和影响版本)。我正在通过 java jersey jars 调用 jira rest api。我可以通过 json 对象检索状态、分辨率等,但是我无法获取以上版本。请帮我。
1 回答
0
I'm no expert but I think you should be looking for 'fixVersions' in the fields collection. In Python terms the fixVersions item is a dictionary because there can be multiple Fix Version assignments (at least that happens here).
For me, each element of the dict has several attibutes: archived: bool id: int name: unicode (d-MMM-yy) releaseDate: unicode (yyyy-mm-dd) released: bool self: unicode (url reference) userReleaseDate: unicode (user formatted date)
于 2014-11-10T16:32:47.363 回答