-
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.
Update the aniview, avantisvideo, selectmediavideo docs and add openw…
…ebvideo and vidcrunch docs (#3177) * New adapter for aniview * Update aniview.md * Create selectmediavideo.md * Have created avantisvideo.md * Update the aniview, avantisvideo, selectmediavideo docs and add openwebvideo and vidcrunch docs Co-authored-by: Itay Nave <itay@aniview.com>
- Loading branch information
Showing
5 changed files
with
126 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
layout: bidder | ||
title: OpenWeb Video | ||
description: Prebid OpenWeb Video Bidder Adapter | ||
pbjs: true | ||
biddercode: openwebvideo | ||
aliasCode: aniview | ||
media_types: banner, video | ||
gdpr_supported: true | ||
usp_supported: true | ||
schain_supported: true | ||
safeframes_ok: true | ||
--- | ||
|
||
### Note: | ||
For more information about [OpenWeb](https://www.openweb.com/). | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|------------------|----------|------------------|------------------------------|----------| | ||
| `AV_PUBLISHERID` | required | Publisher/Netid | `'55b88d4a181f465b3e8b4567'` | `string` | | ||
| `AV_CHANNELID` | required | Channel id | `'5a5f17a728a06102d14c2718'` | `string` | | ||
|
||
### Test Parameters | ||
``` | ||
videoAdUnit = [ | ||
{ | ||
code: 'video1', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [[640, 480]], | ||
context: 'outstream' | ||
}, | ||
}, | ||
bids: [{ | ||
bidder: 'openwebvideo', | ||
params: { | ||
AV_PUBLISHERID: '55b78633181f4603178b4568', | ||
AV_CHANNELID: '5d19dfca4b6236688c0a2fc4' | ||
} | ||
}] | ||
}]; | ||
``` |
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,45 @@ | ||
--- | ||
layout: bidder | ||
title: VidCrunch | ||
description: Prebid VidCrunch Bidder Adapter | ||
pbjs: true | ||
biddercode: vidcrunch | ||
aliasCode: aniview | ||
media_types: banner, video | ||
gdpr_supported: true | ||
usp_supported: true | ||
schain_supported: true | ||
safeframes_ok: true | ||
--- | ||
|
||
### Note: | ||
For more information about [VidCrunch](https://vidcrunch.com/), please contact info@vidcrunch.com. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|------------------|----------|------------------|------------------------------|----------| | ||
| `AV_PUBLISHERID` | required | Publisher/Netid | `'55b88d4a181f465b3e8b4567'` | `string` | | ||
| `AV_CHANNELID` | required | Channel id | `'5a5f17a728a06102d14c2718'` | `string` | | ||
|
||
### Test Parameters | ||
``` | ||
videoAdUnit = [ | ||
{ | ||
code: 'video1', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [[640, 480]], | ||
context: 'outstream' | ||
}, | ||
}, | ||
bids: [{ | ||
bidder: 'vidcrunch', | ||
params: { | ||
AV_PUBLISHERID: '55b78633181f4603178b4568', | ||
AV_CHANNELID: '5d19dfca4b6236688c0a2fc4' | ||
} | ||
}] | ||
}]; | ||
``` |