如何通过GitHub API列出组织私有仓库?

问题描述 投票:0回答:1

我正在尝试使用 GitHub API 列出组织的私有存储库,但我只得到公共存储库作为返回。

这是网址: https://api.github.com/orgs/github/repos

我还在标头中添加了访问令牌,并给出了正确的范围。

这是文档: https://developer.github.com/v3/

https://developer.github.com/v3/orgs/#list-organizations-for-the-authenticated-user

github request private
1个回答
1
投票

您可以使用 Github API:https://developer.github.com/v3/repos/#list-organization-repositories

获取/orgs/:org/repos

要在预览期间访问存储库可见性,您必须在 Accept 标头中提供自定义媒体类型:

application/vnd.github.nebula-preview+json

您还可以添加 type 参数来控制可见性:

© www.soinside.com 2019 - 2024. All rights reserved.