mirror of
https://git.mirrors.martin98.com/https://github.com/jina-ai/reader.git
synced 2025-08-18 15:35:55 +08:00
puppeteer: tweak the ua a bit
This commit is contained in:
parent
cf24d84e8a
commit
2991e300d8
@ -466,6 +466,7 @@ export class PuppeteerControl extends AsyncService {
|
|||||||
livePages = new Set<Page>();
|
livePages = new Set<Page>();
|
||||||
pagePhase = new WeakMap<Page, 'idle' | 'active' | 'background'>();
|
pagePhase = new WeakMap<Page, 'idle' | 'active' | 'background'>();
|
||||||
lastPageCratedAt: number = 0;
|
lastPageCratedAt: number = 0;
|
||||||
|
ua: string = '';
|
||||||
|
|
||||||
rpsCap: number = 500;
|
rpsCap: number = 500;
|
||||||
lastReqSentAt: number = 0;
|
lastReqSentAt: number = 0;
|
||||||
@ -527,7 +528,8 @@ export class PuppeteerControl extends AsyncService {
|
|||||||
}
|
}
|
||||||
process.nextTick(() => this.serviceReady());
|
process.nextTick(() => this.serviceReady());
|
||||||
});
|
});
|
||||||
this.logger.info(`Browser launched: ${this.browser.process()?.pid}`);
|
this.ua = await this.browser.userAgent();
|
||||||
|
this.logger.info(`Browser launched: ${this.browser.process()?.pid}, ${this.ua}`);
|
||||||
|
|
||||||
this.emit('ready');
|
this.emit('ready');
|
||||||
|
|
||||||
@ -566,6 +568,7 @@ export class PuppeteerControl extends AsyncService {
|
|||||||
}
|
}
|
||||||
const preparations = [];
|
const preparations = [];
|
||||||
|
|
||||||
|
preparations.push(page.setUserAgent(this.ua.replace(/Headless/i, '')));
|
||||||
// preparations.push(page.setUserAgent(`Slackbot-LinkExpanding 1.0 (+https://api.slack.com/robots)`));
|
// preparations.push(page.setUserAgent(`Slackbot-LinkExpanding 1.0 (+https://api.slack.com/robots)`));
|
||||||
// preparations.push(page.setUserAgent(`Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.0; +https://openai.com/gptbot)`));
|
// preparations.push(page.setUserAgent(`Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.0; +https://openai.com/gptbot)`));
|
||||||
preparations.push(page.setBypassCSP(true));
|
preparations.push(page.setBypassCSP(true));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user