-
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
55 additions
and
80 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 |
---|---|---|
@@ -1,46 +1,75 @@ | ||
# Rediads Bidder Adapter | ||
--- | ||
layout: bidder | ||
title: Rediads | ||
description: Prebid Rediads Bidder Adapter | ||
biddercode: rediads | ||
prebid_member: false | ||
media_types: banner, video, native | ||
pbjs: true | ||
pbs: false | ||
gvl_id: none | ||
tcfeu_supported: true | ||
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 | ||
--- | ||
|
||
## Features | ||
|
||
| Attribute | Value | | ||
|----------------------------|---------------------------| | ||
| **Bidder Code** | rediads | | ||
| **Prebid.org Member** | no | | ||
| **Prebid.js Adapter** | yes | | ||
| **Prebid Server Adapter** | no | | ||
| **Media Types** | banner, video, native | | ||
| **Multi Format Support** | will-bid-on-one | | ||
| **TCF-EU Support** | yes | | ||
| **IAB GVL ID** | none | | ||
| **GPP Support** | no | | ||
| **USP/CCPA Support** | yes | | ||
| **COPPA Support** | no | | ||
| **Supply Chain Support** | yes | | ||
| **Demand Chain Support** | no | | ||
| **Safeframes OK** | no | | ||
| **Supports Deals** | no | | ||
| **Floors Module Support** | yes | | ||
| **First Party Data Support** | yes | | ||
| **User IDs** | none | | ||
| **ORTB Blocking Support** | partial (bcat only) | | ||
| **Privacy Sandbox** | no | | ||
| **Prebid Server App Support** | no | | ||
| *Bidder Code* | rediads | | ||
| *Prebid.org Member* | no | | ||
| *Prebid.js Adapter* | yes | | ||
| *Prebid Server Adapter* | no | | ||
| *Media Types* | banner, video, native | | ||
| *Multi Format Support* | will-bid-on-one | | ||
| *TCF-EU Support* | yes | | ||
| *IAB GVL ID* | none | | ||
| *GPP Support* | no | | ||
| *USP/CCPA Support* | yes | | ||
| *COPPA Support* | no | | ||
| *Supply Chain Support* | yes | | ||
| *Demand Chain Support* | no | | ||
| *Safeframes OK* | no | | ||
| *Supports Deals* | no | | ||
| *Floors Module Support* | yes | | ||
| *First Party Data Support* | yes | | ||
| *User IDs* | none | | ||
| *ORTB Blocking Support* | partial (bcat only) | | ||
| *Privacy Sandbox* | no | | ||
| *Prebid Server App Support* | no | | ||
|
||
--- | ||
|
||
### 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 | | ||
| 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-bid` to the hash of the page URL. | ||
To enable test bids for the Rediads Bidder Adapter, append rediads-test-bid to the hash of the page URL. | ||
|
||
For example: | ||
|
||
- *Localhost:* http://localhost:8000/xyz#rediads-test-bid | ||
Check failure on line 71 in dev-docs/bidders/rediads.md GitHub Actions / run markdownlintBare URL used
|
||
- *Production URL:* https://domain.com/page#rediads-test-bid | ||
Check failure on line 72 in dev-docs/bidders/rediads.md GitHub Actions / run markdownlintBare URL used
|
||
|
||
This will activate test bids for debugging and validation purposes. | ||
|
||
|
@@ -71,57 +100,3 @@ var adUnits = [ | |
] | ||
} | ||
]; | ||
``` | ||
|
||
#### AdUnit Format for Video | ||
|
||
```javascript | ||
var videoAdUnits = [ | ||
{ | ||
code: 'test-div-video', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [640, 480], | ||
context: 'instream', | ||
mimes: ['video/mp4'], | ||
startdelay: 5, | ||
playbackmethod: [1,3], | ||
api: [1, 2, 3, 4], | ||
protocols: [2, 3], | ||
linearity: 1, | ||
placement: 2, | ||
plcmt: 1, | ||
skip: 1, | ||
minduration: 5, | ||
maxduration: 30 | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'rediads', | ||
params: { | ||
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 | ||
|
||
### Supported Features | ||
|
||
- **Media Types:** banner, video, native | ||
- **Floors Supported:** Yes | ||
- **Deals Supported:** No | ||
- **First Party Data (FPD):** Supports site, publisher, and content objects. | ||
- **OpenRTB Blocking Parameters:** Partial (supports bcat). | ||
|
||
For additional implementation or support, contact us at <[email protected]>. |