我正在将 github api 用于小型 Web 应用程序,有时我需要获取分页的链接头。
最终目标是获取每个存储库的提交总数,我找到了python 脚本并尝试将其调整为 JavaScript。
getData = $.getJSON('https://api.github.com/repos/'+user+'/'+repo+'/commits?callback=?', function (commits){
console.log(getData.getResponseHeader('link'))
// will return null
console.log(getData.getAllResponseHeaders('link'))
// will return an empty string
console.log(commits)
// will successfuly return my json
});
user
repo
分别是用户名和他的仓库名
这是一个 Github 页面,所以我只能使用 JavaScript。