获取项目贡献者列表(代码行)
GET
/api/v1/{owner}/{repo}/contributors/stat.json最后修改时间: 1 年前
请求参数
Path 参数
owner
string
必需
repo
string
必需
Query 参数
ref
string
可选
分支名、标签名或commit_id,不填为全部分支
示例值:
master
pass_year
integer
可选
过去的几年内,默认为过去一年
示例值:
1
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
total_count
integer
必需
contributors
array [object {9}]
必需
contributions
integer
贡献数
additions
integer
新增代码行
deletions
integer
删除代码行
id
string
用户ID
login
string
用户标识
email
string
用户邮箱
name
string
用户昵称
type
string
用户类型
image_url
string
用户头像
示例成功示例
{
"total_count": 1,
"contributors": [
{
"contributions": 1,
"additions": 2,
"deletions": 0,
"id": "84727",
"login": "yystopf123",
"email": "yystopf@163.com",
"name": "yystopf.df",
"type": "User",
"image_url": "images/avatars/User/84727?t=1650252387"
}
]
}
最后修改时间: 1 年前