Skip to content

Commit

Permalink
Update rediads.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rediads authored Dec 10, 2024
1 parent c72535e commit afedd61
Showing 1 changed file with 55 additions and 80 deletions.
135 changes: 55 additions & 80 deletions dev-docs/bidders/rediads.md
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

View workflow job for this annotation

GitHub Actions / run markdownlint

Bare URL used

dev-docs/bidders/rediads.md:71:16 MD034/no-bare-urls Bare URL used [Context: "http://localhost:8000/xyz#redi..."] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md034.md
- *Production URL:* https://domain.com/page#rediads-test-bid

Check failure on line 72 in dev-docs/bidders/rediads.md

View workflow job for this annotation

GitHub Actions / run markdownlint

Bare URL used

dev-docs/bidders/rediads.md:72:21 MD034/no-bare-urls Bare URL used [Context: "https://domain.com/page#rediad..."] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md034.md

This will activate test bids for debugging and validation purposes.

Expand Down Expand Up @@ -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]>.

0 comments on commit afedd61

Please sign in to comment.