-
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.
* added anyclip bidder dev-doc * added safeframes_ok: true * added new empty line at the end * fixed readme * changed gpp_support to gpp_sids: usp, added dchain_supported: false, fpd_supported: false, multiformat_supported: will-not-bid, ortb_blocking_supported: true, privacy_sandbox: no --------- Co-authored-by: Basil Goldman <>
- Loading branch information
Showing
1 changed file
with
61 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,61 @@ | ||
--- | ||
layout: bidder | ||
title: AnyClip | ||
description: AnyClip Bidder Adapter | ||
biddercode: anyclip | ||
tcfeu_supported: false | ||
usp_supported: true | ||
coppa_supported: true | ||
gpp_sids: usp | ||
schain_supported: true | ||
dchain_supported: false | ||
userId: pubProvidedId, unifiedId | ||
media_types: banner | ||
floors_supported: true | ||
fpd_supported: false | ||
pbjs: true | ||
pbs: false | ||
prebid_member: false | ||
multiformat_supported: will-not-bid | ||
ortb_blocking_supported: true | ||
privacy_sandbox: no | ||
safeframes_ok: true | ||
sidebarType: 1 | ||
--- | ||
|
||
### Note | ||
|
||
For more information about [AnyClip](https://www.anyclip.com), please contact [[email protected]]([email protected]). | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|-----------------------|--------------------------|-----------| | ||
| `publisherId` | required | Publisher ID | `'12345'` | `string` | | ||
| `supplyTagId` | required | Supply Tag ID | `'-mptNo0BycUG4oCDgGrU'` | `string` | | ||
| `floor` | optional | Floor Price | `0.5` | `float` | | ||
|
||
#### Sample Banner only Ad Unit | ||
|
||
```js | ||
var adUnits = [{ | ||
code: 'adunit1', // ad slot HTML element ID | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ | ||
[300, 250], | ||
[728, 90] | ||
] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'anyclip', | ||
params: { | ||
publisherId: '12345', // required, string | ||
supplyTagId: '-mptNo0BycUG4oCDgGrU', // required, string | ||
floor: 0.5 // optional, floor | ||
} | ||
}] | ||
}] | ||
``` |