-
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.
* easybid added * Update dev-docs/bidders/easybid.md Co-authored-by: bretg <[email protected]> * Update tcfeu_supported --------- Co-authored-by: Gabriel Chicoye <[email protected]> Co-authored-by: bretg <[email protected]>
- Loading branch information
1 parent
127d2ba
commit 00393c0
Showing
1 changed file
with
120 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
--- | ||
layout: bidder | ||
title: Easybid | ||
description: Prebid Easybid Bidder Adapter | ||
pbjs: true | ||
biddercode: easybid | ||
gvl_id: 1068 | ||
tcfeu_supported: true | ||
usp_supported: true | ||
gpp_supported: true | ||
schain_supported: true | ||
dchain_supported: false | ||
floors_supported: true | ||
userIds: all | ||
tcfeu_supported: true | ||
media_types: banner, video, native | ||
safeframes_ok: true | ||
deals_supported: true | ||
sidebarType: 1 | ||
fpd_supported: true | ||
|
||
--- | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|----------------------------|-------------------------------------- |-----------| | ||
| `tagId` | required | tag ID | `"testeasy"` | `string` | | ||
|
||
### First Party Data | ||
|
||
Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html). | ||
The following fields are supported: | ||
|
||
* ortb2.site.ext.data.* | ||
* ortb2.site.content.data[] | ||
* ortb2.user.ext.data.* | ||
* ortb2.user.data[] | ||
|
||
### Test Parameters | ||
|
||
```javascript | ||
var adUnits = [ | ||
// Banner adUnit | ||
{ | ||
code: 'banner-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250], [300,600]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'easybid', | ||
params: { | ||
tagId: 'testeasy' | ||
} | ||
}] | ||
}, | ||
// Video adUnit | ||
{ | ||
code: 'video1', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [640, 480], | ||
context: 'instream' | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'easybid', | ||
params: { | ||
tagId: 'testeasy' | ||
} | ||
}] | ||
}, | ||
// Native adUnit | ||
{ | ||
code: 'native1', | ||
mediaTypes: | ||
native: { | ||
title: { | ||
required: true | ||
}, | ||
image: { | ||
required: true | ||
}, | ||
sponsoredBy: { | ||
required: true | ||
} | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'easybid', | ||
params: { | ||
tagId: 'testeasy' | ||
} | ||
}] | ||
}, | ||
// Multiformat Ad | ||
{ | ||
code: 'multi1', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [640, 480], | ||
context: 'instream' | ||
}, | ||
banner: { | ||
sizes: [[300, 250], [300,600]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'easybid', | ||
params: { | ||
tagId: 'testeasy', | ||
videoTagId: 'testeasy' | ||
} | ||
}] | ||
}; | ||
]; | ||
``` |