You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`unitId`| required | ShowHeroes MAX unit ID |`'1234abcd-5678efgh'`|`string`|
29
+
|`unitId`| required | ShowHeroes MAX unit ID |`'1234abcd-5678efgh'`|`string`|
28
30
29
31
All other parameters should be sent inside openRTB request.
30
32
31
-
###openRTB2 support
33
+
## openRTB2 support
32
34
33
35
{: .alert.alert-danger :}
34
36
Starting with Prebid.js version 9.18 ShowHeores bidder adapter is requesting bids via openRTB protocol.
35
37
Publishers can use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). Bidder supports all first-party data fields: site, user, segments, and imp-level first-party data.
36
38
37
-
###testing
39
+
## testing
38
40
39
41
While developing or testing locally, you can request a test request by marking the openRTB as a test.
40
-
To do that specifically for `showheroes-Bs` you can do:
42
+
To do that specifically for `showheroes` you can do:
41
43
42
44
```javascript
43
45
pbjs.setBidderConfig({
44
-
bidders: ['showheroesBs'],
46
+
bidders: ['showheroes'],
45
47
config: {
46
48
ortb2: {
47
49
test:1
@@ -56,7 +58,7 @@ Or, more easily you can mark the whole request as a test request by doing:
56
58
pbjs.setConfig({ortb2: {test:1}})
57
59
```
58
60
59
-
####Prebid Server Test Request
61
+
### Prebid Server Test Request
60
62
61
63
To verify that the Prebid Server is working properly with the server-side `Showheroes` adapter a `test` property can be utilized.
62
64
@@ -77,7 +79,7 @@ To verify that the Prebid Server is working properly with the server-side `Showh
77
79
}
78
80
```
79
81
80
-
####Outstream
82
+
### Outstream
81
83
82
84
Example of adunit configuration for the outstream unit:
83
85
@@ -105,7 +107,7 @@ var adUnits = [
105
107
},
106
108
},
107
109
bids: [{
108
-
bidder:"showheroes-bs",
110
+
bidder:"showheroes",
109
111
params: {
110
112
unitId:"1234abcd-5678efgh",
111
113
}
@@ -121,7 +123,7 @@ pbjs.que.push(function () {
121
123
122
124
You could use this example and place it in .html example pages inside the Prebid.js repository.
123
125
124
-
####instream
126
+
### instream
125
127
126
128
Example of adunit configuration for the instream unit:
127
129
@@ -137,7 +139,7 @@ var videoAdUnit = {
137
139
},
138
140
bids: [
139
141
{
140
-
bidder:'showheroesBs',
142
+
bidder:'showheroes',
141
143
params: {
142
144
unitId:"1234abcd-5678efgh",
143
145
}
@@ -164,7 +166,7 @@ pbjs.que.push(function(){
164
166
165
167
You could use this example and place it in the `test/pages/instream.html` example page inside the Prebid.js repository.
0 commit comments