Bábkar nastaviť hlavičky

Príklady kódu

0
0

bábkar nastaviť hlavičky

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('...')
0
0

bábkar nastaviť hlavičku

	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 })
		})

Podobné stránky

Podobné stránky s príkladmi

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................