Skip to content

Commit 32aeef8

Browse files
rename showheroes bidder
1 parent e2559b3 commit 32aeef8

1 file changed

Lines changed: 17 additions & 15 deletions

File tree

Lines changed: 17 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,33 @@ 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 }
26+
2527
| Name | Scope | Description | Example | Type |
2628
|-------------|----------------------------------|-------------------------------------|------------------------------------------|-----------|
27-
| `unitId` | required | ShowHeroes MAX unit ID | `'1234abcd-5678efgh'` | `string` |
29+
| `unitId` | required | ShowHeroes MAX unit ID | `'1234abcd-5678efgh'` | `string` |
2830

2931
All other parameters should be sent inside openRTB request.
3032

31-
### openRTB2 support
33+
## openRTB2 support
3234

3335
{: .alert.alert-danger :}
3436
Starting with Prebid.js version 9.18 ShowHeores bidder adapter is requesting bids via openRTB protocol.
3537
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.
3638

37-
### testing
39+
## testing
3840

3941
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:
4143

4244
```javascript
4345
pbjs.setBidderConfig({
44-
bidders: ['showheroesBs'],
46+
bidders: ['showheroes'],
4547
config: {
4648
ortb2: {
4749
test:1
@@ -56,7 +58,7 @@ Or, more easily you can mark the whole request as a test request by doing:
5658
pbjs.setConfig({ortb2: {test: 1}})
5759
```
5860

59-
#### Prebid Server Test Request
61+
### Prebid Server Test Request
6062

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

@@ -77,7 +79,7 @@ To verify that the Prebid Server is working properly with the server-side `Showh
7779
}
7880
```
7981

80-
#### Outstream
82+
### Outstream
8183

8284
Example of adunit configuration for the outstream unit:
8385

@@ -105,7 +107,7 @@ var adUnits = [
105107
},
106108
},
107109
bids: [{
108-
bidder: "showheroes-bs",
110+
bidder: "showheroes",
109111
params: {
110112
unitId: "1234abcd-5678efgh",
111113
}
@@ -121,7 +123,7 @@ pbjs.que.push(function () {
121123

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

124-
#### instream
126+
### instream
125127

126128
Example of adunit configuration for the instream unit:
127129

@@ -137,7 +139,7 @@ var videoAdUnit = {
137139
},
138140
bids: [
139141
{
140-
bidder: 'showheroesBs',
142+
bidder: 'showheroes',
141143
params: {
142144
unitId: "1234abcd-5678efgh",
143145
}
@@ -164,7 +166,7 @@ pbjs.que.push(function(){
164166

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

167-
#### banner
169+
### banner
168170

169171
Example of adunit configuration for banner ads:
170172

@@ -180,7 +182,7 @@ var adUnits = [
180182
}
181183
},
182184
bids: [{
183-
bidder: "showheroes-bs",
185+
bidder: "showheroes",
184186
params: {
185187
unitId: "1234abcd-5678efgh",
186188
}

0 commit comments

Comments
 (0)