Skip to content

Commit d11cba5

Browse files
authored
Add stroeerCore bidder documenation (#1)
1 parent 1aa2068 commit d11cba5

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

dev-docs/bidders/stroeerCore.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: bidder
3+
title: StroeerCore
4+
description: Stroeer Bidder Adapter
5+
biddercode: stroeerCore
6+
media_types: banner
7+
gdpr_supported: false
8+
schain_supported: false
9+
coppa_supported: false
10+
usp_supported: false
11+
tcf2_supported: true
12+
safeframes_ok: true
13+
prebid_member: false
14+
pbjs: true
15+
pbs: false
16+
gvl_id: 136
17+
bidder_supports_deals: true
18+
---
19+
20+
## Ad unit configuration for publishers
21+
22+
```javascript
23+
const adUnits = [{
24+
code: 'div-gpt-ad-1460505748561-0',
25+
mediaTypes: {
26+
banner: {
27+
sizes: [[300, 250]],
28+
}
29+
},
30+
bids: [{
31+
bidder: 'stroeerCore',
32+
params: {
33+
sid: "06b782cc-091b-4f53-9cd2-0291679aa1ac"
34+
}
35+
}]
36+
}];
37+
```
38+
### Config Notes
39+
40+
* 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=".
41+
* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123).

0 commit comments

Comments
 (0)