Skip to content

Commit fa67bfc

Browse files
rename showheroes bidder
1 parent e2559b3 commit fa67bfc

1 file changed

Lines changed: 16 additions & 15 deletions

File tree

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: bidder
33
title: ShowHeroes
44
description: Prebid ShowHeroes Bidder Adapter
55
pbjs: true
6-
biddercode: showheroes-bs
6+
biddercode: showheroes
77
media_types: video, banner
88
gvl_id: 111
99
tcfeu_supported: true
@@ -17,31 +17,32 @@ sidebarType: 1
1717
pbs: true
1818
---
1919

20+
{: .alert.alert-danger :}
21+
Showheroes bid adapter is going to be renamed in the Prebid.js version 12, from `showheroes-bs` to `showheroes`
2022

21-
22-
### bid params
23+
## bid params
2324

2425
{: .table .table-bordered .table-striped }
2526
| Name | Scope | Description | Example | Type |
2627
|-------------|----------------------------------|-------------------------------------|------------------------------------------|-----------|
27-
| `unitId` | required | ShowHeroes MAX unit ID | `'1234abcd-5678efgh'` | `string` |
28+
| `unitId` | required | ShowHeroes MAX unit ID | `'1234abcd-5678efgh'` | `string` |
2829

2930
All other parameters should be sent inside openRTB request.
3031

31-
### openRTB2 support
32+
## openRTB2 support
3233

3334
{: .alert.alert-danger :}
3435
Starting with Prebid.js version 9.18 ShowHeores bidder adapter is requesting bids via openRTB protocol.
3536
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.
3637

37-
### testing
38+
## testing
3839

3940
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:
41+
To do that specifically for `showheroes` you can do:
4142

4243
```javascript
4344
pbjs.setBidderConfig({
44-
bidders: ['showheroesBs'],
45+
bidders: ['showheroes'],
4546
config: {
4647
ortb2: {
4748
test:1
@@ -56,7 +57,7 @@ Or, more easily you can mark the whole request as a test request by doing:
5657
pbjs.setConfig({ortb2: {test: 1}})
5758
```
5859

59-
#### Prebid Server Test Request
60+
### Prebid Server Test Request
6061

6162
To verify that the Prebid Server is working properly with the server-side `Showheroes` adapter a `test` property can be utilized.
6263

@@ -77,7 +78,7 @@ To verify that the Prebid Server is working properly with the server-side `Showh
7778
}
7879
```
7980

80-
#### Outstream
81+
### Outstream
8182

8283
Example of adunit configuration for the outstream unit:
8384

@@ -105,7 +106,7 @@ var adUnits = [
105106
},
106107
},
107108
bids: [{
108-
bidder: "showheroes-bs",
109+
bidder: "showheroes",
109110
params: {
110111
unitId: "1234abcd-5678efgh",
111112
}
@@ -121,7 +122,7 @@ pbjs.que.push(function () {
121122

122123
You could use this example and place it in .html example pages inside the Prebid.js repository.
123124

124-
#### instream
125+
### instream
125126

126127
Example of adunit configuration for the instream unit:
127128

@@ -137,7 +138,7 @@ var videoAdUnit = {
137138
},
138139
bids: [
139140
{
140-
bidder: 'showheroesBs',
141+
bidder: 'showheroes',
141142
params: {
142143
unitId: "1234abcd-5678efgh",
143144
}
@@ -164,7 +165,7 @@ pbjs.que.push(function(){
164165

165166
You could use this example and place it in the `test/pages/instream.html` example page inside the Prebid.js repository.
166167

167-
#### banner
168+
### banner
168169

169170
Example of adunit configuration for banner ads:
170171

@@ -180,7 +181,7 @@ var adUnits = [
180181
}
181182
},
182183
bids: [{
183-
bidder: "showheroes-bs",
184+
bidder: "showheroes",
184185
params: {
185186
unitId: "1234abcd-5678efgh",
186187
}

0 commit comments

Comments
 (0)