我正在使用Jira API从jira获取问题,当我尝试获取问题的注释时,可迭代列表始终为空
Iterator<Comment> comments = issue.getComments().iterator();
while (comments.hasNext()){
Comment comment = comments.next();
System.out.println("Comment : " + comment.getBody() + " by " + comment.getAuthor().getDisplayName());
}
我尝试使用邮递员,并且GET
中的JSON
返回注释
为什么?