-
Notifications
You must be signed in to change notification settings - Fork 0
/
getDadosAPI.js
33 lines (31 loc) · 916 Bytes
/
getDadosAPI.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const axios = require("axios");
module.exports = async function getDadosAPI(endpointURL, token) {
return await buscaDados(endpointURL, token, 1);
};
async function buscaDados(endpointURL, token, numeroPagina) {
const url = endpointURL.concat(
endpointURL.indexOf("?") == -1 ? "?" : "&",
`access_token=${token}&per_page=100&page=`,
numeroPagina
);
let retorno = [];
try {
const response = await axios.get(url);
retorno = retorno.concat(response.data);
if (response.data.length == 100) {
retorno = retorno.concat(
await buscaDados(endpointURL, token, numeroPagina + 1)
);
}
} catch (e) {
//se for 404, apenas não encontrou, senão, exibe
if (e.response == null || e.response.status != 404) {
console.log(
"EXCEÇÃO:",
url,
e.response ? e.response.message : e.code ? e.code : e
);
}
}
return retorno;
}