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

Windtalker adapter docs #1788

Merged
merged 1 commit into from
Apr 7, 2020
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
98 changes: 98 additions & 0 deletions dev-docs/bidders/windtalker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
---
layout: bidder
title: Windtalker
description: Prebid Windtalker Bidder Adapter
hide: true
biddercode: windtalker
media_types: native, video
gdpr_supported: true
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------------------|----------------|----------|
| `pubId` | required | The publisher account ID | `'28082'` | `string` |
| `siteId` | required | The publisher site ID | `'26047'` | `string` |
| `size` | required | Ad size identifier | `'300X250'` | `string` |
| `placementId` | required | Identifies specific ad placement | `'17394'` | `string` |
| `bidFloor` | optional | The bid floor | `'0.001'` | `string` |
| `ifa` | optional | IFA ID | `'XXX-XXX'` | `string` |
| `latitude` | optional | Latitude | `'40.712775'` | `string` |
| `longitude` | optional | Longitude | `'-74.005973'` | `string` |

### test params

```
var adUnits = [{
code: 'dfp-native-div',
mediaType: 'native',
mediaTypes: {
native: {
title: {
required: true,
len: 75
},
image: {
required: true
},
body: {
len: 200
},
icon: {
required: false
}
}
},
bids: [{
bidder: 'windtalker',
params: {
pubId: '29521',
siteId: '26048',
placementId: '123',
}
}]
},
{
code: 'dfp-banner-div',
mediaTypes: {
banner: {
sizes: [
[300, 250]
],
}
},
bids: [{
bidder: 'windtalker',
params: {
pubId: '29521',
siteId: '26049',
size: '300X250',
placementId: '123',
}
}]
},
{
code: 'dfp-video-div',
sizes: [640, 480],
mediaTypes: {
video: {
context: "instream"
}
},
bids: [{
bidder: 'windtalker',
params: {
pubId: '29521',
siteId: '26049',
size: '640X480',
placementId: '123',
video: {
skippable: true,
}
}
}]
}
];
```