我有一个项目需要从回购中检索所有问题。我一直在练习原子库,我正在使用GitHub API。
我使用axios get函数,我正在做的请求如下。
axios.get('https://api.github.com/repos/atom/atom/issues',
{
headers: { 'Accept': 'application/vnd.github.VERSION.raw+json' },
params: {'state': 'all'}
})
.then((response) => {
console.log(response);
})
.catch((error) =>{
console.log(error);
});
但是有772个问题,它只检索了30个问题。
我怎样才能将它们全部收回?我错过了标题或参数中的内容。
我也试过没有参数和标题。并且还将过滤器:全部添加到参数中,我仍然会遇到30个问题。
提前致谢。