-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Showing
1 changed file
with
50 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
layout: bidder | ||
title: DistroScale | ||
description: Prebid DistroScale Bidder Adaptor | ||
biddercode: distroscale | ||
media_types: banner | ||
pbjs: true | ||
pbs: false | ||
gdpr_supported: true | ||
usp_supported: true | ||
coppa_supported: true | ||
schain_supported: true | ||
fpd_supported: true | ||
userIds: all | ||
floors_supported: true | ||
safeframes_ok: false | ||
prebid_member: true | ||
gvl_id: 754 | ||
--- | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|--------------------|-----------------|----------| | ||
| `pubid` | required | Publisher ID | `'12345'` | `string` | | ||
| `zoneid` | optional | Zone ID | `'67890'` | `string` | | ||
|
||
|
||
### Prebid Test Request | ||
|
||
``` | ||
var adUnits = [{ | ||
code: 'banner-1', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]], | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'distroscale', | ||
params: { | ||
pubid: '12345' // required, must be a string | ||
,zoneid: '67890' // optional, must be a string | ||
} | ||
}] | ||
}]; | ||
``` | ||
|
||
These test parameters can be used to verify that the DistroScale adapter is working properly. This example includes a DistroScale test publisher ID, an optional zone ID and sizes that would match with the test creative. |