-
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.
Merge branch 'master' into add-rediads-bid-adapter
- Loading branch information
Showing
6 changed files
with
175 additions
and
2 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
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
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
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
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,80 @@ | ||
--- | ||
layout: bidder | ||
title: Nexverse | ||
description: Prebid Nexverse Bidder Adapter | ||
biddercode: nexverse | ||
tcfeu_supported: false | ||
dsa_supported: true | ||
gvl_id: none | ||
usp_supported: true | ||
coppa_supported: true | ||
schain_supported: true | ||
dchain_supported: false | ||
userId: all | ||
media_types: banner, video, native | ||
safeframes_ok: true | ||
deals_supported: true | ||
floors_supported: true | ||
fpd_supported: true | ||
pbjs: true | ||
pbs: false | ||
prebid_member: false | ||
multiformat_supported: will-bid-on-one | ||
ortb_blocking_supported: false | ||
privacy_sandbox: no | ||
sidebarType: 1 | ||
--- | ||
|
||
|
||
### Nexverse Adapter | ||
|
||
The Nexverse adapter requires some initial setup. For assistance or setup instructions, please contact us at [[email protected]](mailto:[email protected]). | ||
|
||
### Supported Media Types | ||
|
||
The Nexverse adapter supports the following media types: | ||
|
||
- Banner | ||
- Video | ||
- Native | ||
|
||
### Configuration | ||
|
||
To configure the Nexverse adapter, you will need the following parameters: | ||
|
||
| Name | Scope | Description | Example | Type | | ||
|--------|----------|--------------------------|------------|--------| | ||
| uid | required | Publisher's unique ID | "12345" | string | | ||
| pubId | required | Publisher ID | "54321" | string | | ||
| pubEpid | optional | Publisher's unique EPID | "epid123" | string | | ||
|
||
### Test Parameters | ||
|
||
You can test the Nexverse adapter with the following test parameters: | ||
|
||
```javascript | ||
var adUnits = [ | ||
{ | ||
code: 'div-ad-1', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250], [320, 50]], | ||
}, | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'nexverse', | ||
params: { | ||
uid: '12345', | ||
pubId: '54321', | ||
pubEpid: 'epid123', | ||
}, | ||
}, | ||
], | ||
}, | ||
]; | ||
``` | ||
|
||
### GDPR, CCPA, COPPA Support | ||
|
||
Nexverse complies with GDPR, CCPA, and COPPA regulations. If you have further questions regarding compliance, feel free to reach out to us. |
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,89 @@ | ||
--- | ||
layout: bidder | ||
title: StellorMedia | ||
description: Stellor Media Bidder Adapter | ||
biddercode: stellormedia | ||
aliasCode: adtelligent | ||
media_types: video,banner | ||
tcfeu_supported: false | ||
gpp_sids: usp | ||
userId: all (with commercial activation) | ||
schain_supported: true | ||
coppa_supported: true | ||
usp_supported: true | ||
safeframes_ok: true | ||
prebid_member: false | ||
pbjs: true | ||
pbs: false | ||
deals_supported: false | ||
sidebarType: 1 | ||
--- | ||
|
||
### Bid params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|-------|----------|---------------------------------|----------|-----------| | ||
| `aid` | required | The source ID from Stellor Media. | `12412` | `integer` | | ||
|
||
### Description | ||
|
||
Stellor Media header bidding adapter connects with Indicue Media demand sources in order to fetch bids. | ||
This adapter provides a solution for accessing Video demand and display demand. | ||
|
||
### Test Parameters | ||
|
||
```javascript | ||
var adUnits = [ | ||
|
||
// Video instream adUnit | ||
{ | ||
code: 'test-div', | ||
mediaTypes: { | ||
video: { | ||
context: 'instream', | ||
playerSize: [640, 480] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'stellormedia', | ||
params: { | ||
aid: 472386 | ||
} | ||
}] | ||
}, | ||
|
||
// Video outstream adUnit | ||
{ | ||
code: 'test-div', | ||
mediaTypes: { | ||
video: { | ||
context: 'outstream', | ||
playerSize: [640, 480] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'stellormedia', | ||
params: { | ||
aid: 472386 | ||
} | ||
}] | ||
}, | ||
|
||
// Banner adUnit | ||
{ | ||
code: 'test-div', | ||
mediaTypes:{ | ||
banner:{ | ||
sizes: [[300, 250]] | ||
} | ||
} | ||
bids: [{ | ||
bidder: 'stellormedia', | ||
params: { | ||
aid: 529814 | ||
} | ||
}] | ||
} | ||
]; | ||
``` |