获取项目贡献者列表
GET
/api/{owner}/{repo}/contributors.json最后修改时间: 1 年前
请求参数
Path 参数
owner
string
必需
repo
string
必需
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
total_count
integer
分页总数
list
array [object {7}]
必需
contributions
integer
贡献数
id
string
用户ID
login
string
用户标识
email
string
用户邮箱
name
string
用户昵称
type
string
用户类型
image_url
string
用户头像
示例
{
"list": [
{
"contributions": 1,
"id": "113",
"login": "yystopfceshi",
"email": "yystopfceshi1@163.com",
"name": "heihei",
"type": "User",
"image_url": "system/lets/letter_avatars/2/H/145_178_168/120.png"
}
],
"total_count": 1
}
最后修改时间: 1 年前