2016-02-18 66 views

回答

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);  
}); 
+0

這正是我的工作。謝謝。 – wolfram77

+0

很高興幫助@ wolfram77 – tejasbubane

2

在這個pageSelect2插件。他們正在利用github的API來搜索存儲庫,並以json的形式搜索結果。 完整的Github API可用here

+1

謝謝!通過此搜索查詢「https://api.github.com/search/repositories?q= + user:',我可以獲得回購說明。 – wolfram77

相關問題