Axios Node JS Set Agente de Usuário
axios
.get(`url`,
{ headers: { 'User-Agent': 'YOUR-SERVICE-NAME' } } )
.then(response => {
// here will be cheerio scraping
})
.catch(function(e) {
console.log(e);
});
RedGuy12