我正在使用GUT API来获取文件列表。我正在使用GIT API Get Contents
这是网址:
https://github.com/repos/gitster/git/contents/git
gister是所有者 git是存储库 git是路径
但是我收到如下错误:
{
"error": "Not Found"
}
请帮助我如何使用GIT API获取文件列表。
答案 0 :(得分:1)
如您所述,您可能需要将网址从https://github.com/repos/gitster/git/contents/git更改为http://api.github.com/repos/gitster/git/contents/,如Github的API文档所示
GET /repos/:owner/:repo/contents/:path
示例:
$.ajax({
url : 'http://api.github.com/repos/gitster/git/contents/',
method : 'GET',
success : function(response) {
console.log(response);
}
});
希望这有助于您的案例