Skip to content

Index Exchange: Add Schain and video caching to docs #1762

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 7, 2020
Merged
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
18 changes: 16 additions & 2 deletions dev-docs/bidders/indexExchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Index Exchange
description: Prebid Index Exchange Bidder Adapter
biddercode: ix
hide: true
schain_supported: true
gdpr_supported: true
usp_supported: true
media_types: banner, video
Expand Down Expand Up @@ -142,7 +143,7 @@ var adUnits = [{
}];
```

##### 1. Add IX to the appropriate ad units
### 1. Add IX to the appropriate ad units

For each size in an ad unit that IX will be bidding on, add one of the following
bid objects under `adUnits[].bids`:
Expand Down Expand Up @@ -259,7 +260,20 @@ var adUnits = [{
}];
```

##### 2. Include `ixBidAdapter` in your build process
#### Video Caching

Note that the IX adapter expects a client-side Prebid Cache to be enabled for video bidding.

```
pbjs.setConfig({
usePrebidCache: true,
cache: {
url: 'https://prebid.adnxs.com/pbc/v1/cache'
}
});
```

### 2. Include `ixBidAdapter` in your build process

When running the build command, include `ixBidAdapter` as a module, as well as `dfpAdServerVideo` if you require video support.

Expand Down