0

jira の特定の問題に関連するすべてのバージョン (修正バージョン、確認バージョン、影響バージョンなど) を取得する必要があります。Java ジャージー jar を介して Jira レスト API を呼び出しています。json オブジェクトを介してステータス、解決策などを取得できますが、上記のバージョンを取得できません。私を助けてください。

4

1 に答える 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 に答える