Network & Downloads

Stealth Override Referrer

Apply custom Referer header (stealth mode).

Apply custom Referer header (stealth mode).

Sets a fixed Referer value for network requests to mask or control origin behavior, and confirms successful configuration to the native layer.

Examples

GPAL Fluent: High-level fluent C# API

//Browser setup and settings before the first GoTo or Get.

browser.WithUseStealth(StealthType.GoogleReferrer);

MagicHelper: MagicHelper utility library

GPAL.MagicHelper.StealthOverrideReferrer();

Puppeteer Client: Puppeteer-style C# client

browser.PuppeteerClient.StealthOverrideReferrer().Execute();

Puppeteer Communicator: Low-level communicator

await browser.PuppeteerCommunicator.StealthOverrideReferrer(string sessionId);

REST Client: Direct REST/HTTP client

GPAL.OttoMagicClient.WithEndpoint(ApiEndpoint.StealthOverrideReferrer).Execute();