Skip to content

Commit 4539443

Browse files
authored
added note asking for test bids (prebid#5987)
1 parent 8582522 commit 4539443

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

prebid-server/developers/add-new-bidder-go.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,11 @@ We request you do not duplicate information already present in the [OpenRTB 2.x
357357
{: .alert.alert-warning :}
358358
You may not try to set the full endpoint domain from a publisher-specified bidder parameter. Prebid Server is not an open proxy. If absolutely necessary, you may specify a *portion* of the domain as a parameter to support geo regions or account specific servers. However, this is discouraged and may degrade the performance of your adapter since the server needs to maintain more outgoing connections. Host companies may choose to disable your adapter if it uses a dynamically configured domain.
359359

360+
{: .alert.alert-info :}
361+
Prebid publishers and managed services often require test responses from bid adapters. Please plan to provide a method for obtaining test bids for each mediatype you support. This can be done in response to the OpenRTB `test:1` flag, or with a documented set of bidder parameters.
362+
363+
#### Defining the Parameters
364+
360365
Create a file with the path `static/bidder-params/{bidder}.json` and use [JSON Schema](https://json-schema.org/understanding-json-schema/) to define your bidder parameters. Prebid Server requires this file for every adapter, even if yours doesn't require bidder parameters (see the 'no parameters' example at the end of this section).
361366

362367
Let's start with this example which defines one required `placementId` string parameter:

prebid-server/developers/add-new-bidder-java.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,11 @@ We request that you do not duplicate information that is already present in the
269269
{: .alert.alert-warning :}
270270
You may not try to set the full endpoint domain from a publisher-specified bidder parameter. Prebid Server is not an open proxy. If absolutely necessary, you may specify a *portion* of the domain as a parameter to support geo regions or account specific servers. However, this is discouraged and may degrade the performance of your adapter since the server needs to maintain more outgoing connections. Host companies may choose to disable your adapter if it uses a dynamically configured domain.
271271

272+
{: .alert.alert-info :}
273+
Prebid publishers and managed services often require test responses from bid adapters. Please plan to provide a method for obtaining test bids for each mediatype you support. This can be done in response to the OpenRTB `test:1` flag, or with a documented set of bidder parameters.
274+
275+
#### Defining the Parameters
276+
272277
Create a file with the path `static/bidder-params/{bidder}.json` using [JSON Schema](https://json-schema.org/understanding-json-schema/) to define your bidder parameters. Prebid Server requires this file for every adapter, even if yours doesn't require bidder parameters (see the 'no parameters' example at the end of this section).
273278

274279
Let's start with this example which defines one required `placementId` string parameter:

0 commit comments

Comments
 (0)