We are using Sonarqube version 4.5. Using curl call I am trying to log on to sonar qube server but I am getting "authenication" error. What is a webapi call to logon to SonarQube server?
标签:
sonarqube-4.5
相关问题
- Why does squid:S1166 not accept exception messages
- Sonarqube 4.5.4 : Mysql deadlock
- How to exclude/ignore referenced project(s) analys
- New Msbuild Sonar runner is skipping analysis for
- Read timed out on /batch/project (SonarQube 4.5)
相关文章
- Read timed out on /batch/project (SonarQube 4.5)
- 被SonarQube包装设计插件删除? 什么关于Groovy?(Is SonarQube pac
- What is sonarqube logon webapi
- deleting a project; not in bulk deletion or ghost
- Ignore missing documentation if superclass has doc
- Is SonarQube package design widget removed? And wh
- SonarQube Lombok Getter recognition
- SonarQube - Combining Sonar way, FindBugs, PMD and
There is no dedicated 'login API', SonarQube Web Services use basic HTTP authentication (for the Web Services that do require authentication). So you just need to provide your credentials within the HTTP request itself, e.g. with
curl
:curl -u admin:admin http://localhost:9000/api/server/system