Is there any way to get the author in the API response of Duplications or Code Coverage?
The APIs I used were:
- For Code Coverage:
- https://sonarcloud.io/api/measures/component?component={project_key}&metricKeys=coverage
- https://sonarcloud.io/api/measures/component_tree?component={project_key}&metricKeys=coverage&ps=500
- For Duplications
- https://sonarcloud.io/api/measures/component?component={project_key}&metricKeys=duplicated_lines,duplicated_blocks,duplicated_files,duplicated_lines_density
- https://sonarcloud.io/api/measures/component_tree?component={project_key}&author=true&metricKeys=duplicated_lines,duplicated_blocks,duplicated_files,duplicated_lines_density&ps=500
Thanks in advance