📜  axios node js 设置用户代理 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:20.760000             🧑  作者: Mango

代码示例1
axios
    .get(`url`, 
{ headers: { 'User-Agent': 'YOUR-SERVICE-NAME' }  } )
    .then(response => {
      
      // here will be cheerio scraping
    })
    .catch(function(e) {
      console.log(e);
    });