分享几个常用的github-api。
查询项目最新提交信息
以我的github项目为例,api完整链接如下。
https://api.github.com/repos/freecdn/images/commits?per_page=10&sha=master
可选参数
per_page 查询条数
sha 查询分支
想要查询你自己的项目,只需将momodiy替换成你要查询的用户id,sudoku替换成你要查询的该用户的项目即可。
查询用户基本信息
依旧是以我的github账户为例,可查看用户的详细信息,返回信息如下json。
https://api.github.com/users/freecdn
获取用户followers列表
https://api.github.com/users/freecdn/followers
想查看其他用户的只需将momodiy替换成你需要查看的用户id即可。
获取用户following列表
https://api.github.com/users/freecdn/following
想查看其他用户的只需将momodiy替换成你需要查看的用户id即可。
获取用户stared项目列表
https://api.github.com/users/freecdn/starred
想查看其他用户的只需将momodiy替换成你需要查看的用户id即可。
评论 (0)