Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 更新SonarApi 路径为相对路径,解决baseUrl包含二级目录时的空异常 #22

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

zhengxiaosong
Copy link

根据retrofit2定义,@get("/api/execute")会作为绝对路径处理,如果baseUrl为 https://example.com/sonar/, 那么完整地址会变为
https://example.com/api/execute。
如果需要保持子路径作为BaseUrl,那么需要采用相对路径
@get("api/execute"),这样retrofit2会处理为https://example.com/sonar/api/execute

根据retrofit2定义,@get("/api/execute")会作为绝对路径处理,如果baseUrl为
https://example.com/sonar/, 那么完整地址会变为
https://example.com/api/execute。
如果需要保持子路径作为BaseUrl,那么需要采用相对路径
@get("api/execute"),这样retrofit2会处理为https://example.com/sonar/api/execute
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant