使用 curl 保存 public Github 回购贡献者列表

Saving a list of a public Github repo contributors using curl

我正在尝试获取 public GitHub 存储库的贡献者列表,保存为文本文件。

curl -H "Authorization: token mytoken" https://api.github.com/repos/v2fly/v2ray-core/contributors&per_page=100 >> output.txt

我在终端中得到了输出,但没有输出到文件中。另外,请求似乎没有关闭。我做错了什么?

我猜 API URL 不正确。那个per_page querystring需要在放“?”之后传递在URL之后,你可以试试这个

curl -H "Authorization: token mytoken" https://api.github.com/repos/v2fly/v2ray-core/contributors?per_page=100 >> output.txt