forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99dd5fd
commit 12adabf
Showing
1 changed file
with
20 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ title: ShowHeroes | |
description: Prebid ShowHeroes Bidder Adapter | ||
pbjs: true | ||
biddercode: showheroes-bs | ||
media_types: video, banner | ||
media_types: video | ||
gvl_id: 111 | ||
tcfeu_supported: true | ||
usp_supported: true | ||
|
@@ -30,12 +30,28 @@ All other parameters should be sent inside openRTB request. | |
### openRTB2 support | ||
|
||
{: .alert.alert-danger :} | ||
Starting with Prebid.js version 9.15 ShowHeores bidder adapter is requesting bids via openRTB protocol. 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. | ||
Starting with Prebid.js version 9.15 ShowHeores bidder adapter is requesting bids via openRTB protocol. | ||
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. | ||
|
||
### testing | ||
|
||
While developing or testing locally, you can 'fake' the page URL by setting the: `qa.pageURL` parameter. | ||
This will automatically set the `test: 1` parameter inside the openRTB request, marking this bid request as a test request. | ||
While developing or testing locally, you can request a test request by marking the openRTB as a test. | ||
To do that specifically for `showheroes-Bs` you can do: | ||
```javascript | ||
Check failure on line 40 in dev-docs/bidders/showheroes-bs.md GitHub Actions / run markdownlintFenced code blocks should be surrounded by blank lines
|
||
pbjs.setBidderConfig({ | ||
bidders: ['showheroesBs'], | ||
config: { | ||
ortb2: { | ||
test:1 | ||
} | ||
} | ||
}) | ||
``` | ||
|
||
Or, more easily you can mark the whole request as a test request by doing: | ||
```javascript | ||
Check failure on line 52 in dev-docs/bidders/showheroes-bs.md GitHub Actions / run markdownlintFenced code blocks should be surrounded by blank lines
|
||
pbjs.setConfig({config: {ortb2: {test: 1}}}) | ||
``` | ||
|
||
#### Outstream | ||
|
||
|