fix: multiple bug fixes for URL, JSON parsing, and API parameters#7
Merged
tornado404 merged 1 commit intomasterfrom Feb 28, 2026
Merged
fix: multiple bug fixes for URL, JSON parsing, and API parameters#7tornado404 merged 1 commit intomasterfrom
tornado404 merged 1 commit intomasterfrom
Conversation
1. URL 拼接 Bug (client.go): - 修复 RequestWithQuery 中重复拼接 baseURL 的问题 - 现在查询参数正确附加到 path 后面,不会重复 baseURL 2. JSON 解析问题 (provider.go, config.go): - provider list: 支持多种 JSON 结构(完整结构、简单数组、map) - config providers: 支持多种 JSON 结构,添加回退解析逻辑 - 添加更友好的错误消息 3. API 参数问题 (message.go): - command: 修复参数解析,使用 strings.SplitN 替代自定义 indexOf - shell: 修复命令参数传递逻辑,优先使用--command 标志 - 添加更友好的错误消息和参数验证
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
URL 拼接 Bug (client.go):
JSON 解析问题 (provider.go, config.go):
API 参数问题 (message.go):