GitHub提供给API整理
GitHub提供的API
返回的都是json数据
查询⽤户下的所有仓库
curl api.github/users/XuelinLuu/repos
查询某个仓库的详细信息
curl api.github/repos/XuelinLuu/models
获取某个仓库的内容列表,返回的只是根⽬录中的内容
curl api.github/repos/XuelinLuu/models/contents
获取仓库中⼦⽬录的列表
curl是什么命令curl api.github/repos/XuelinLuu/models/contents/official
获取仓库中某个⽂件的信息,不是内容
curl api.github/repos/XuelinLuu/models/contents/README.md
获取某个⽂件中的内容
curl raw.githubusercontent/XuelinLuu/models/master/README.md
获取某个仓库的commit列表
curl api.github/repos/XuelinLuu/models/commits
获取某⼀条评论的详情
curl api.github/repos/XuelinLuu/models/commits/0ae21b98709defbfe6e85d6f737a5e6e32927b5c 获取仓库的issues
curl api.github/repos/XuelinLuu/models/issues
获取某⼀个具体的问题
curl github/pingcap/tidb/issues/12105
获取某个issue的comments列表
curl api.github/repos/pingcap/tidb/issues/12105/comments
获取某个issue的某⼀个comment详情,是具体的某个issus中的commmit,但是在请求url中,没有issue的id,只有comment的ID
curl api.github/repos/pingcap/tidb/issues/comments/553496475
分页查询的参数设置
curl api.github/users/XuelinLuu/repos?per_page=3
curl api.github/users/XuelinLuu/repos?page=3
设置issue的状态
curl api.github/repos/pingcap/tidb/issues?states=open
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论