puppeteer location header code example
Example 1: puppeteer set header
await page.setRequestInterception(true) await page.setRequestInterception(true)
await page.on('request', (req) => {
if (!req.isNavigationRequest()) {
req.continue()
return
}
const headers = req.headers()
headers['Access-Control-Allow-Origins'] = '*'
headers['Accept'] = 'application/json'
headers['Accept-Encoding'] = 'gzip, br'
headers['Content-Type'] = 'application/json'
headers['Cache-Control'] = 'no-cache'
headers['User-Agent'] = 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1'
req.continue({ ...headers })
})
await page.on('request', (req) => {
if (!req.isNavigationRequest()) {
req.continue()
return
}
const headers = req.headers()
headers['Access-Control-Allow-Origins'] = '*'
headers['Accept'] = 'application/json'
headers['Accept-Encoding'] = 'gzip, br'
headers['Content-Type'] = 'application/json'
headers['Cache-Control'] = 'no-cache'
headers['User-Agent'] = 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:15.0) Gecko/20100101 Firefox/15.0.1'
req.continue({ ...headers })
})
Example 2: puppeteer set headers
await page.setExtraHTTPHeaders({
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36',
'upgrade-insecure-requests': '1',
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3',
'accept-encoding': 'gzip, deflate, br',
'accept-language': 'en-US,en;q=0.9,en;q=0.8'
})
await page.goto('...')