Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rediads bid adapter #5743

Merged
merged 18 commits into from
Dec 20, 2024
Merged
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions dev-docs/bidders/rediads.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
---
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
rediads marked this conversation as resolved.
Show resolved Hide resolved
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
---
muuki88 marked this conversation as resolved.
Show resolved Hide resolved

### 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]>.
Loading