JIRAのREST APIの検索でmaxResults
パラメータが使用されていません。どんなにそれが常に50
結果を返し、何であるかmaxResults
JIRA REST API maxResultsでのJQLクエリの問題
curl -o lambrusco.txt -k -D- -u admin:admin -X GET -H "Content-Type: application/json" https://jira.domain.com/rest/api/2/search?jql=assignee=blackpearl&startAt=0&maxResults=4
。
出力:私はここで何を {"expand":"schema,names","startAt":0,"maxResults":50,"total":61,"issues":[{"expand":"operations,versionedRepresentations,editmeta,changelog,transitions,renderedFields","id":"15588","self": ...}
をしないのですか?
私はPHPのcurlを使ってデータを取得したときにうまくいきました。 – theblackpearl