Github 用于访问私有存储库的个人访问令牌:/repos/:user/:repo/contents
Github personal access token for accessing private repository's: /repos/:user/:repo/contents
我正在尝试使用个人访问令牌来访问存储库的内容。
如果存储库是 public,我可以使用 v3 和 v4 api 来实现。 return 内容以下的两个请求:
v3:
curl https://api.github.com/repos/w3c/webappsec/contents/
v4:
query {
repository(owner: "w3c", name: "webappsec") {
object(expression: "master:") {
... on Tree {
entries{
name
}
}
}
}
}
现在我已经生成了一个个人访问令牌,用于在我的一个私人存储库中执行此操作,但它从来没有 return 任何东西:
v3(带授权令牌):
curl -H "Authorization: bearer myauthorizationtoken" https://api.github.com/repos/myusername/myrepo/contents/
结果:
{
"message": "Not Found",
"documentation_url": "https://developer.github.com/v3/repos/contents/#get-contents"
}
v4(带授权令牌):
query {
repository(owner: "myusername", name: "myrepo") {
object(expression: "master:") {
... on Tree {
entries{
name
}
}
}
}
}
结果:
{
"data": {
"repository": {
"object": null
}
}
}
我尝试在生成令牌时选中所有 read
复选框,但没有。我做错了什么?
看起来,要获取此信息,需要令牌的所有 repo
访问权限。
适合我:
[x] repo Full control of private repositories
[x] repo:status Access commit status
[x] repo_deployment Access deployment status
[x] public_repo Access public repositories
[x] repo:invite Access repository invitations
权限复选框
API v3 用法:
$ curl -H "Authorization: bearer $private_token" https://api.github.com/repos/dmytrohoi/site.source/contents/
[
{
"name": ".github",
"path": ".github",
"sha": "hash",
"size": 0,
"url": "https://api.github.com/repos/dmytrohoi/site.source/contents/.github?ref=master",
"html_url": "https://github.com/dmytrohoi/site.source/tree/master/.github",
"git_url": "https://api.github.com/repos/dmytrohoi/site.source/git/trees/hash",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/dmytrohoi/site.source/contents/.github?ref=master",
"git": "https://api.github.com/repos/dmytrohoi/site.source/git/trees/hash",
"html": "https://github.com/dmytrohoi/site.source/tree/master/.github"
}
},
...
]
我正在尝试使用个人访问令牌来访问存储库的内容。
如果存储库是 public,我可以使用 v3 和 v4 api 来实现。 return 内容以下的两个请求:
v3:
curl https://api.github.com/repos/w3c/webappsec/contents/
v4:
query {
repository(owner: "w3c", name: "webappsec") {
object(expression: "master:") {
... on Tree {
entries{
name
}
}
}
}
}
现在我已经生成了一个个人访问令牌,用于在我的一个私人存储库中执行此操作,但它从来没有 return 任何东西:
v3(带授权令牌):
curl -H "Authorization: bearer myauthorizationtoken" https://api.github.com/repos/myusername/myrepo/contents/
结果:
{
"message": "Not Found",
"documentation_url": "https://developer.github.com/v3/repos/contents/#get-contents"
}
v4(带授权令牌):
query {
repository(owner: "myusername", name: "myrepo") {
object(expression: "master:") {
... on Tree {
entries{
name
}
}
}
}
}
结果:
{
"data": {
"repository": {
"object": null
}
}
}
我尝试在生成令牌时选中所有 read
复选框,但没有。我做错了什么?
看起来,要获取此信息,需要令牌的所有 repo
访问权限。
适合我:
[x] repo Full control of private repositories
[x] repo:status Access commit status
[x] repo_deployment Access deployment status
[x] public_repo Access public repositories
[x] repo:invite Access repository invitations
权限复选框
API v3 用法:
$ curl -H "Authorization: bearer $private_token" https://api.github.com/repos/dmytrohoi/site.source/contents/
[
{
"name": ".github",
"path": ".github",
"sha": "hash",
"size": 0,
"url": "https://api.github.com/repos/dmytrohoi/site.source/contents/.github?ref=master",
"html_url": "https://github.com/dmytrohoi/site.source/tree/master/.github",
"git_url": "https://api.github.com/repos/dmytrohoi/site.source/git/trees/hash",
"download_url": null,
"type": "dir",
"_links": {
"self": "https://api.github.com/repos/dmytrohoi/site.source/contents/.github?ref=master",
"git": "https://api.github.com/repos/dmytrohoi/site.source/git/trees/hash",
"html": "https://github.com/dmytrohoi/site.source/tree/master/.github"
}
},
...
]