|
|
@@ -341,7 +341,7 @@ public class CodexServiceImpl implements CodexService {
|
|
|
}
|
|
|
|
|
|
// 调用Codex API获取用户控制台数据
|
|
|
- String dashboardUrl = String.format(Constant.CLAUDE_CODE_API_PREFIX + "api/openai/users/%s/java/dashboard", userId);
|
|
|
+ String dashboardUrl = String.format(Constant.CLAUDE_CODE_API_PREFIX + "api/openai/users/%s/dashboard", userId);
|
|
|
ClaudeCodeResp codexResp = executeCodexGetApi(dashboardUrl);
|
|
|
return codexResp;
|
|
|
}
|
|
|
@@ -356,7 +356,7 @@ public class CodexServiceImpl implements CodexService {
|
|
|
}
|
|
|
|
|
|
// 调用Codex API获取用户分析数据
|
|
|
- String analyticsUrl = String.format(Constant.CLAUDE_CODE_API_PREFIX + "api/openai/users/%s/java/analytics", userId);
|
|
|
+ String analyticsUrl = String.format(Constant.CLAUDE_CODE_API_PREFIX + "api/openai/users/%s/analytics", userId);
|
|
|
ClaudeCodeResp codexResp = executeCodexGetApi(analyticsUrl);
|
|
|
|
|
|
return codexResp;
|