-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Copper6 Adapter - adding document #6597
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鈥檒l occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b69e143
adding document
dfc37f6
Merge branch 'master' into adapter-copper6
194a74c
working on the right file
f1d88d4
Merge branch 'master' into adapter-copper6
bbdcfdc
remove nonexistent user id manager
36831a7
name
148687b
Merge branch 'master' into adapter-copper6
91ecdcc
Merge branch 'master' into adapter-copper6
2c4c705
keep backward compatibility
4ab72ae
stype fix
09e40d5
Merge branch 'master' into adapter-copper6
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,80 @@ | ||
| --- | ||
| layout: bidder | ||
| title: Copper6 | ||
| description: Prebid Copper6 Bidder Adaptor | ||
| biddercode: copper6ssp | ||
| userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId | ||
| tcfeu_supported: false | ||
| usp_supported: true | ||
| gvl_id: 1356 | ||
| coppa_supported: false | ||
| schain_supported: true | ||
| gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp | ||
| floors_supported: true | ||
| media_types: banner, video | ||
| prebid_member: false | ||
| safeframes_ok: false | ||
| deals_supported: false | ||
| pbs_app_supported: false | ||
| fpd_supported: false | ||
| ortb_blocking_supported: false | ||
| multiformat_supported: will-bid-on-one | ||
| pbjs: true | ||
| pbs: false | ||
| sidebarType: 1 | ||
| --- | ||
|
|
||
| ## Bid Params for Prebid.js | ||
|
|
||
| {: .table .table-bordered .table-striped } | ||
|
|
||
| | Name | Scope | Description | Example | Type | | ||
| |------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| | ||
| | `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | | ||
| | `pId` | required | The publisher ID from Copper6 (pbjs only). | `'59ac17c192832d0011283fe3'` | `string` | | ||
| | `bidFloor` | optional | The minimum bid value desired. Copper6 will not respond with bids lower than this value. | `0.90` | `float` | | ||
|
|
||
| ## Bid Params for Prebid Server | ||
|
|
||
| {: .table .table-bordered .table-striped } | ||
|
|
||
| | Name | Scope | Description | Example | Type | | ||
| |------------|----------|------------------------------------------------------------------------------------------|------------------------------|----------| | ||
| | `cId` | required | The connection ID from Copper6. | `'562524b21b1c1f08117fc7f9'` | `string` | | ||
|
|
||
| ### Example | ||
|
|
||
| ```javascript | ||
| var adUnits = [{ | ||
| code: 'banner-div', | ||
| mediaTypes: { | ||
| banner: { | ||
| sizes: [ | ||
| [300, 250], | ||
| [728, 90] | ||
| ] | ||
| } | ||
| }, | ||
| bids: [{ | ||
| bidder: 'copper6ssp', | ||
| params: { | ||
| cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP... | ||
| pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP... | ||
| bidFloor: 1.23 // Optional | ||
| } | ||
| }] | ||
| } | ||
| ]; | ||
|
|
||
| // configure pbjs to enable user syncing | ||
| pbjs.setConfig({ | ||
| userSync: { | ||
| filterSettings: { | ||
| iframe: { | ||
| bidders: 'copper6ssp', | ||
| filter: 'include' | ||
| } | ||
| } | ||
| } | ||
| }); | ||
| ``` | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
britepoolId doesnt exist
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have removed it. Thank you.
How can I know when some user id managers stop work? I see this one in other mds too.