我在使用GET使用github api时遇到了麻烦。
根据 GitHub API : 我应该致电:
https://api.github.com/teams/1
我收到了ff json数据:
{
"message": "Not Found",
"documentation_url": "https://developer.github.com/v3"
}
这是文档的链接: https://developer.github.com/v3/orgs/teams/#get-team
我无法以某种方式获得团队信息。
答案 0 :(得分:0)
如果这取决于您的correctly authenticated,那么放一个oauth2就可以了,因为这样的密钥可以:
是obtained programmatically
(如this gist)
curl -u 'your_user_name' -d '{"scopes":["gist"],"note":"gister script test"}' https://api.github.com/authorizations
被撤销。
然后这可以更好地工作:
https://api.github.com/teams/1?access_token=OAUTH-TOKEN