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

Add openweb bid adapter doc #3101

Merged
merged 6 commits into from
Jul 15, 2021
Merged
Changes from all 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
80 changes: 80 additions & 0 deletions dev-docs/bidders/openweb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
layout: bidder
title: OpenWeb
description: Prebid OpenWeb Bidder Adapter
biddercode: openweb
media_types: video,banner,adpod
gdpr_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
schain_supported: true
coppa_supported: true
usp_supported: true
safeframes_ok: true
prebid_member: true
pbjs: true
pbs: true
gvl_id: 280
---

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------|----------|---------------------------------|----------|-----------|
| `aid` | required | The source ID from OpenWeb. | `350975` | `integer` |

### Description
OpenWeb.com official prebid adapter. Available in both client and server side versions.
OpenWeb header bidding adapter provides solution for accessing both Video and Display demand.

### Test Parameters
```
var adUnits = [
// Video instream adUnit
{
code: 'test-div',
mediaTypes: {
video: {
context: 'instream',
playerSize: [640, 480]
}
},
bids: [{
bidder: 'adtelligent',
params: {
aid: 650344
}
}]
},
// Banner adUnit
{
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
code: 'div-test-div',
bids: [{
bidder: 'openweb',
params: {
aid: 650342
}
}]
},
// Prebid server
{
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
code: 'div-test-div',
bids: [{
bidder: 'openweb',
params: {
aid: 650346
}
}]
}
];
```