我们正在开发一个项目,我们需要在GitHub帐户的存储库中显示一个人的所有项目。
任何人都可以建议,如何使用他的git-user名称显示特定人员的所有git存储库的名称?
答案 0 :(得分:34)
使用Github API:
/users/:user/repos
这将为您提供所有用户的公共存储库。如果您需要查找私有存储库,则需要以特定用户身份进行身份验证。然后,您可以使用REST调用:
/user/repos
找到所有用户的回购。
要在Python中执行此操作,请执行以下操作:
USER='AUSER'
API_TOKEN='ATOKEN'
GIT_API_URL='https://api.github.com'
def get_api(url):
try:
request = urllib2.Request(GIT_API_URL + url)
base64string = base64.encodestring('%s/token:%s' % (USER, API_TOKEN)).replace('\n', '')
request.add_header("Authorization", "Basic %s" % base64string)
result = urllib2.urlopen(request)
result.close()
except:
print 'Failed to get api request from %s' % url
传递给函数的url是REST url,如上例所示。如果您不需要进行身份验证,则只需修改方法即可删除添加Authorization标头。然后,您可以使用简单的GET请求获取任何公共API。
答案 1 :(得分:33)
您可以使用github api。点击https://api.github.com/users/username/repos
将列出该用户的公共存储库。
答案 2 :(得分:25)
尝试使用以下curl
命令列出存储库:
GHUSER=CHANGEME; curl "https://api.github.com/users/$GHUSER/repos?per_page=100" | grep -o 'git@[^"]*'
要列出克隆的网址,请运行:
GHUSER=CHANGEME; curl -s "https://api.github.com/users/$GHUSER/repos?per_page=1000" | grep -w clone_url | grep -o '[^"]\+://.\+.git'
如果它是私密的,您需要添加API密钥(access_token=GITHUB_API_TOKEN
),例如:
curl "https://api.github.com/users/$GHUSER/repos?access_token=$GITHUB_API_TOKEN" | grep -w clone_url
如果用户是组织,请改用/orgs/:username/repos
来返回所有存储库。
要克隆它们,请参阅:How to clone all repos at once from GitHub?
另请参阅:How to download GitHub Release from private repo using command line
答案 3 :(得分:6)
您也可以为此使用新的花式 github cli:
$ gh api users/:owner/repos
它也会很好地打印输出,这将提高可读性。
以下是您可以复制并粘贴到 shell 中的示例:
wget "https://github.com/cli/cli/releases/download/v1.11.0/gh_1.11.0_macOS_amd64.tar.gz"
tar -xvf gh_1.11.0_macOS_amd64.tar.gz
cd gh_1.11.0_macOS_amd64/bin
gh auth login
gh repo list --limit 200
答案 4 :(得分:5)
如果已安装jq,则可以使用以下命令列出用户的所有公共存储库
curl -s https://api.github.com/users/<username>/repos | jq '.[]|.html_url'
答案 5 :(得分:3)
您可能需要一个jsonp解决方案:
https://api.github.com/users/[user name]/repos?callback=abc
如果你使用jQuery:
$.ajax({
url: "https://api.github.com/users/blackmiaool/repos",
jsonp: true,
method: "GET",
dataType: "json",
success: function(res) {
console.log(res)
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
答案 6 :(得分:3)
如果要寻找组织的回购协议-
api.github.com/orgs/$NAMEOFORG/repos
示例:
curl https://api.github.com/orgs/arduino-libraries/repos
此外,您可以添加per_page参数以获取所有名称,以防万一出现分页问题-
curl https://api.github.com/orgs/arduino-libraries/repos?per_page=100
答案 7 :(得分:3)
现在有了使用超棒GraphQL API Explorer的选项。
我想要我的组织的所有活动存储库及其各自语言的列表。该查询就是这样做的:
{
organization(login: "ORG_NAME") {
repositories(isFork: false, first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
pageInfo {
endCursor
}
nodes {
name
updatedAt
languages(first: 5, orderBy: {field: SIZE, direction: DESC}) {
nodes {
name
}
}
primaryLanguage {
name
}
}
}
}
}
答案 8 :(得分:3)
以下是repos API的完整规格:
https://developer.github.com/v3/repos/#list-repositories-for-a-user
GET /users/:username/repos
查询字符串参数:
前5个记录在上面的API链接中。 page
和per_page
的参数已在其他地方进行了记录,在完整说明中很有用。
type
(字符串):可以是all
,owner
,member
中的一个。默认值:owner
sort
(字符串):可以是created
,updated
,pushed
,full_name
中的一个。默认值:full_name
direction
(字符串):可以是asc
或desc
之一。默认值:使用asc
时使用full_name
,否则使用desc
page
(整数):当前页面per_page
(整数):每页记录数由于这是HTTP GET API,因此除了cURL外,您还可以在浏览器中简单地进行尝试。例如:
https://api.github.com/users/grokify/repos?per_page=1&page=2
答案 9 :(得分:2)
HTML
<div class="repositories"></div>
JavaScript
// Github仓库
如果您想限制存储库列表,只需在?per_page=3
之后添加username/repos
。
例如username/repos?per_page=3
您可以将任何人的用户名而不是/ username
/放在Github上。
var request = new XMLHttpRequest();
request.open('GET','https://api.github.com/users/username/repos' ,
true)
request.onload = function() {
var data = JSON.parse(this.response);
console.log(data);
var statusHTML = '';
$.each(data, function(i, status){
statusHTML += '<div class="card"> \
<a href=""> \
<h4>' + status.name + '</h4> \
<div class="state"> \
<span class="mr-4"><i class="fa fa-star mr-2"></i>' + status.stargazers_count + '</span> \
<span class="mr-4"><i class="fa fa-code-fork mr-2"></i>' + status.forks_count + '</span> \
</div> \
</a> \
</div>';
});
$('.repositories').html(statusHTML);
}
request.send();
答案 10 :(得分:0)
使用 official GitHub command-line tool:
gh auth login
gh api graphql --paginate -f query='
query($endCursor: String) {
viewer {
repositories(first: 100, after: $endCursor) {
nodes { nameWithOwner }
pageInfo {
hasNextPage
endCursor
}
}
}
}
' | jq ".[] | .viewer | .repositories | .nodes | .[] | .nameWithOwner"
注意:这将包括您与您共享的所有公共、私人和其他人的存储库。
参考文献:
答案 11 :(得分:0)
const request = require('request');
const config = require('config');
router.get('/github/:username', (req, res) => {
try {
const options = {
uri: `https://api.github.com/users/${req.params.username}/repos?per_page=5
&sort=created:asc
&client_id=${config.get('githubClientId')}
&client_secret=${config.get('githubSecret')}`,
method: 'GET',
headers: { 'user-agent': 'node.js' }
};
request(options, (error, response, body) => {
if (error) console.log(error);
if (response.statusCode !== 200) {
res.status(404).json({ msg: 'No Github profile found.' })
}
res.json(JSON.parse(body));
})
} catch (err) {
console.log(err.message);
res.status(500).send('Server Error!');
}
});
答案 12 :(得分:0)
要获取用户的100个公共存储库的网址,请执行以下操作:
$.getJSON("https://api.github.com/users/suhailvs/repos?per_page=100", function(json) {
var resp = '';
$.each(json, function(index, value) {
resp=resp+index + ' ' + value['html_url']+ ' -';
console.log(resp);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
答案 13 :(得分:0)
使用Python检索GitHub用户的所有公共存储库的列表:
import requests
username = input("Enter the github username:")
request = requests.get('https://api.github.com/users/'+username+'/reposper_page=1000')
json = request.json()
for i in range(0,len(json)):
print("Project Number:",i+1)
print("Project Name:",json[i]['name'])
print("Project URL:",json[i]['svn_url'],"\n")
答案 14 :(得分:0)
NPM模块repos为某个用户或组的所有公共存储库获取JSON。您可以直接从npx
运行此程序,因此无需安装任何程序,只需选择组织或用户(此处为“ W3C”)即可:
$ npx repos W3C W3Crepos.json
这将创建一个名为W3Crepos.json的文件。 Grep足以胜任获取回购清单:
$ grep full_name W3Crepos.json
优点:
缺点:
npx
(如果要真正安装,则需要npm
)。答案 15 :(得分:0)
答案是“ / users /:user / repo”,但是我拥有一个开源项目中执行此操作的所有代码,可用于在服务器上站立Web应用程序。
我站起来了一个名为Git-Captain的GitHub项目,该项目与列出所有存储库的GitHub API通信。
这是一个使用Node.js构建的开源Web应用程序,利用GitHub API在整个GitHub存储库中查找,创建和删除分支。
可以为组织或单个用户设置。
我还逐步介绍了如何在自述文件中进行设置。
答案 16 :(得分:0)
下面的JS代码旨在在控制台中使用。
username = "mathieucaroff";
w = window;
Promise.all(Array.from(Array(Math.ceil(1+184/30)).keys()).map(p =>
fetch(`//api.github.com/users/{username}/repos?page=${p}`).then(r => r.json())
)).then(all => {
w.jo = [].concat(...all);
// w.jo.sort();
// w.jof = w.jo.map(x => x.forks);
// w.jow = w.jo.map(x => x.watchers)
})