我怎样才能获得GitHub回购的描述?

时间:2016-02-18 18:45:55

标签: github github-api

每个 GitHub存储库都有描述 字段和可选的网站 字段 。如何使用 AJAX 访问(任何GitHub repo)这些字段?

2 个答案:

答案 0 :(得分:2)

Select2 插件的page上。他们正在利用github的api来搜索存储库和json的retreive结果。 完整的github api可用here

答案 1 :(得分:1)

Github提供了用于获取有关存储库的详细信息的API:

https://api.github.com/repos/<organization>/<project>

例如。 https://api.github.com/repos/ruby/ruby

您可以使用简单的简单jQuery来获取所需的信息:

$.ajax('https://api.github.com/repos/ruby/ruby').done(function(json) { 
   // You can access the description as json.description
   console.log(json.description);       
});