Skip to content

Commit

Permalink
Add stroeerCore bidder documenation (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kubitini authored Oct 7, 2020
1 parent 1aa2068 commit d11cba5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions dev-docs/bidders/stroeerCore.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
layout: bidder
title: StroeerCore
description: Stroeer Bidder Adapter
biddercode: stroeerCore
media_types: banner
gdpr_supported: false
schain_supported: false
coppa_supported: false
usp_supported: false
tcf2_supported: true
safeframes_ok: true
prebid_member: false
pbjs: true
pbs: false
gvl_id: 136
bidder_supports_deals: true
---

## Ad unit configuration for publishers

```javascript
const adUnits = [{
code: 'div-gpt-ad-1460505748561-0',
mediaTypes: {
banner: {
sizes: [[300, 250]],
}
},
bids: [{
bidder: 'stroeerCore',
params: {
sid: "06b782cc-091b-4f53-9cd2-0291679aa1ac"
}
}]
}];
```
### Config Notes

* Slot id (`sid`) is required. The adapter will ignore bid requests from prebid if `sid` is not provided. This must be in the decoded form. For example, "1234" as opposed to "MTM0ODA=".
* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123).

0 comments on commit d11cba5

Please sign in to comment.