繁体   English   中英

如何使用github api检索repo的所有贡献者

[英]How to retrieve all the contributors of a repo using github api

我正在尝试使用这个github api获取repo的所有贡献者。

如果我没有错,它还告诉我,如果有一个回购的贡献者超过500,它只提供500个,其余的被标记为匿名。

出于性能原因,只有存储库中的前500个作者电子邮件地址将链接到GitHub用户。

这个repo linux内核有5k +贡献者,根据api,我应该通过api获得至少500个贡献者。

当我做curl -I https://api.github.com/repos/torvalds/linux/contributors?per_page=100

我只得到3页(per_page = 100)所以我得到> 300个贡献者。(查看“链接”标题)

有没有办法获得回购的所有贡献者(5000+)?

HTTP/1.1 200 OK
Server: GitHub.com
Date: Thu, 19 Nov 2015 18:00:54 GMT
Content-Type: application/json; charset=utf-8
Content-Length: 100308
Status: 200 OK
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 56
X-RateLimit-Reset: 1447958881
Cache-Control: public, max-age=60, s-maxage=60
Last-Modified: Thu, 19 Nov 2015 16:06:38 GMT
ETag: "a57e0f74fc68e1791da15d33fa044616"
Vary: Accept
X-GitHub-Media-Type: github.v3
Link: <https://api.github.com/repositories/2325298/contributors?per_page=100&page=2>; rel="next", <https://api.github.com/repositories/2325298/contributors?per_page=100&page=3>; rel="last"
X-XSS-Protection: 1; mode=block
X-Frame-Options: deny
Content-Security-Policy: default-src 'none'
Access-Control-Allow-Credentials: true
Access-Control-Expose-Headers: ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval
Access-Control-Allow-Origin: *
Strict-Transport-Security: max-age=31536000; includeSubdomains; preload
X-Content-Type-Options: nosniff
Vary: Accept-Encoding
X-Served-By: a30e6f9aa7cf5731b87dfb3b9992202d
X-GitHub-Request-Id: 67E881D2:146C9:24CF1BB3:564E0E55

由于GitHub API似乎不支持这一点,另一种方法(一种慢得多的方法)是克隆repo然后运行此命令(获取名称):

git log --all --format='%aN' | sort -u

要通过电子邮件地址获取结果(这应该防止贡献者名称配置更改并且更准确):

git log --all --format='%aE' | sort -u

如果您需要任何repo的此功能,您可以编写一个简单的脚本,该脚本将包含存储库路径,克隆存储库,运行命令,然后删除下载的存储库。

与此同时,您可以联系GitHub ,希望他们能够提高扩展/修复API的优先级。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM