Skip to content

Commit

Permalink
BP-55: Implement Prebid Adapter - Update docs (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
PavloMalashnyak authored Feb 8, 2024
1 parent f06edfc commit 979993b
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions dev-docs/bidders/blockthrough.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,40 @@ pbjs.setBidderConfig({
ext: {
blockthrough: {
ab: false,
orgID: 'orgID',
websiteID: 'websiteID',
orgID: '4829301576428910',
websiteID: '5654012389765432',
},
},
},
},
},
});
```

#### AdUnits configuration example

```javascript
var adUnits = [
{
code: 'banner-div-1',
mediaTypes: {
banner: {
sizes: [[728, 90]],
},
},
bids: [
{
bidder: 'blockthrough',
params: {
bidderA: {
publisherId: 55555,
},
bidderB: {
zoneId: 12,
},
},
},
],
},
];
```

0 comments on commit 979993b

Please sign in to comment.