-
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.
* Create rediads.md * Update rediads.md * Update rediads.md - added more information on the bidder * Update rediads.md * Update rediads.md * Update rediads.md * Update rediads.md * Update rediads.md * Update rediads.md * Update rediads.md * Update rediads.md * Update dev-docs/bidders/rediads.md Co-authored-by: Muki Seiler <[email protected]> --------- Co-authored-by: Muki Seiler <[email protected]>
- Loading branch information
Showing
1 changed file
with
84 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,84 @@ | ||
--- | ||
layout: bidder | ||
title: Rediads | ||
description: Prebid Rediads Bidder Adapter | ||
biddercode: rediads | ||
prebid_member: false | ||
media_types: banner, video, native | ||
pbjs: true | ||
pbs: false | ||
tcfeu_supported: false | ||
usp_supported: true | ||
coppa_supported: false | ||
schain_supported: true | ||
dchain_supported: false | ||
safeframes_ok: false | ||
deals_supported: false | ||
floors_supported: true | ||
fpd_supported: true | ||
ortb_blocking_supported: partial | ||
privacy_sandbox: no | ||
multiformat_supported: will-bid-on-one | ||
sidebarType: 1 | ||
--- | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|--------------|----------|-----------------------------------------------------------------------------|----------------------|----------------| | ||
| account_id | required | Account ID generated on the Rediads Platform. | '12345' | string | | ||
| site | optional | Site domain name. | 'rediads.com' | string | | ||
| slot | optional | Unique identifier for the ad slot generated on the platform. | '54321' | string | | ||
|
||
--- | ||
|
||
### Enabling Test Bids | ||
|
||
To enable test bids for the Rediads Bidder Adapter, append rediads-test-bids to the hash of the page URL. | ||
|
||
For example: | ||
|
||
- *Localhost:* [http://localhost:8000/xyz#rediads-test-bid](http://localhost:8000/xyz#rediads-test-bids) | ||
- *Production URL:* [https://domain.com/page#rediads-test-bid](https://domain.com/page#rediads-test-bids) | ||
|
||
This will activate test bids for debugging and validation purposes. | ||
|
||
--- | ||
|
||
### AdUnit Examples | ||
|
||
#### AdUnit Format for Banner | ||
|
||
```javascript | ||
var adUnits = [ | ||
{ | ||
code: 'test-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250], [300, 600]] | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'rediads', | ||
params: { | ||
account_id: '12345', | ||
site: 'rediads.com', | ||
slot: '54321' | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
``` | ||
|
||
### First Party Data Support | ||
The following fields are supported for First Party Data (FPD): | ||
|
||
- `ortb2.site.*` | ||
- `ortb2.publisher.*` | ||
- `ortb2.content.*` | ||
- `ortb2.devices.locations parameters` | ||
|
||
For additional implementation or support, contact us at <[email protected]>. |