From a977da092b114570e953058126908a4668fcd9a7 Mon Sep 17 00:00:00 2001 From: Filip Stamenkovic Date: Wed, 25 Mar 2026 17:58:00 +0100 Subject: [PATCH 1/2] enable compression --- dev-docs/bidders/showheroes.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-docs/bidders/showheroes.md b/dev-docs/bidders/showheroes.md index a5282ce057..5361826d8e 100644 --- a/dev-docs/bidders/showheroes.md +++ b/dev-docs/bidders/showheroes.md @@ -15,6 +15,7 @@ fpd_supported: true multiformat_supported: will-bid-on-one sidebarType: 1 pbs: true +endpoint_compression: true --- {: .alert.alert-danger :} @@ -197,3 +198,22 @@ pbjs.que.push(function () { ``` You can use this example and place in the `hello_world` gpt integration test page + +### Endpoint Compression + +This adapter utilizes gzip compression support built into Prebid.js core. For more information, see [Compression Support for Outgoing Requests](https://docs.prebid.org/dev-docs/bidder-adaptor.html#compression-support-for-outgoing-requests) + +#### Disabling Compression + +You can disable gzip compression at the bidder level using `pbjs.setBidderConfig`. Set the `gzipEnabled` value to false: + +```javascript +pbjs.que.push(function () { + pbjs.setBidderConfig({ + bidders: ['showheroes'], + config: { + gzipEnabled: false + } + }); +}); +``` From e672e58a4a497f046d7d3bcac4fa1b52758f99d2 Mon Sep 17 00:00:00 2001 From: Filip Stamenkovic Date: Wed, 25 Mar 2026 18:05:38 +0100 Subject: [PATCH 2/2] lint fixes --- dev-docs/bidders/showheroes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/showheroes.md b/dev-docs/bidders/showheroes.md index 5361826d8e..7f8d90b439 100644 --- a/dev-docs/bidders/showheroes.md +++ b/dev-docs/bidders/showheroes.md @@ -199,11 +199,11 @@ pbjs.que.push(function () { You can use this example and place in the `hello_world` gpt integration test page -### Endpoint Compression +## Endpoint Compression This adapter utilizes gzip compression support built into Prebid.js core. For more information, see [Compression Support for Outgoing Requests](https://docs.prebid.org/dev-docs/bidder-adaptor.html#compression-support-for-outgoing-requests) -#### Disabling Compression +### Disabling Compression You can disable gzip compression at the bidder level using `pbjs.setBidderConfig`. Set the `gzipEnabled` value to false: