Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions dev-docs/bidders/showheroes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ fpd_supported: true
multiformat_supported: will-bid-on-one
sidebarType: 1
pbs: true
endpoint_compression: true
---

{: .alert.alert-danger :}
Expand Down Expand Up @@ -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
}
});
});
```
Loading