- 通用服务模块
- 登录服务模块
- 用户服务模块
- 分析数据服务模块
- 健康测试
- Prompt 服务
- ChatGLM 服务
- Country Guess 服务
- Socre Rank 服务
- 前端调试
查询对应 login 的用户分数
GET
/api/analyze/score/{login}
无需登录
请求参数
Path 参数
login
string
必需
示例值:
EST-NINE
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '127.0.0.1:9000/api/analyze/score/EST-NINE'
返回响应
🟢200成功
application/json
Body
code
string
错误码
message
null
错误码信息
data
object (GithubScoreResp)
必需
totalScore
number
用户总得分
userScore
number
用户基础数据得分
reposScore
number
用户仓库数据得分
prsScore
number
用户 prs 数据得分
issuesScore
number
用户 issues 数据得分
updateTime
integer
更新时间时间戳
success
boolean
请求是否成功
示例
{
"code": "0",
"message": null,
"data": {
"totalScore": 92.21,
"userScore": 27.54,
"reposScore": 46.31,
"prsScore": 13.77,
"issuesScore": 4.59,
"updateTime": 1730461124
},
"success": true
}