Skip to content

Commit

Permalink
remove banner
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipStamenkovic committed Sep 17, 2024
1 parent 99dd5fd commit 12adabf
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions dev-docs/bidders/showheroes-bs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

View workflow job for this annotation

GitHub Actions / run markdownlint

Fenced code blocks should be surrounded by blank lines

dev-docs/bidders/showheroes-bs.md:40 MD031/blanks-around-fences Fenced code blocks should be surrounded by blank lines [Context: "```javascript"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md031.md
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

View workflow job for this annotation

GitHub Actions / run markdownlint

Fenced code blocks should be surrounded by blank lines

dev-docs/bidders/showheroes-bs.md:52 MD031/blanks-around-fences Fenced code blocks should be surrounded by blank lines [Context: "```javascript"] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md031.md
pbjs.setConfig({config: {ortb2: {test: 1}}})
```

#### Outstream

Expand Down

0 comments on commit 12adabf

Please sign in to comment.