-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Blockthrough Bid Adapter: initial release #5050
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
1dcc0fb
Add documentation for BT Bidder Adapter (#1)
PavloMalashnyak f06edfc
Fix lint error
PavloMalashnyak 979993b
BP-55: Implement Prebid Adapter - Update docs (#2)
PavloMalashnyak 2786a1f
BP-55: Implement Prebid Adapter - clarify bidderConfig params (#3)
PavloMalashnyak 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 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: Blockthrough | ||
description: Prebid BT Bidder Adapter | ||
biddercode: blockthrough | ||
gvl_id: 815 | ||
usp_supported: true | ||
coppa_supported: false | ||
gpp_sids: usp | ||
schain_supported: true | ||
dchain_supported: false | ||
userId: pubProvidedId, id5Id, criteo, sharedId, identityLink, unifiedId, userId | ||
media_types: banner | ||
floors_supported: true | ||
fpd_supported: true | ||
pbjs: true | ||
pbs: true | ||
multiformat_supported: will-not-bid | ||
ortb_blocking_supported: false | ||
sidebarType: 1 | ||
--- | ||
|
||
### Note | ||
|
||
The BT Bid Adapter makes requests to the BT Server which supports OpenRTB. | ||
|
||
Publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). The BT adapter requires setup and approval from the Blockthrough team. Please reach out to [marketing@blockthrough.com](mailto:marketing@blockthrough.com) for more information. | ||
|
||
### Prebid JS | ||
|
||
#### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
| -------- | -------- | --------------------------- | ------- | --------- | | ||
| `bidderCode` | required | Bidder configuration. Could configure several bidders this way. | `bidderA: {publisherId: 55555}` | `object` | | ||
|
||
#### Bid Config | ||
|
||
Make sure to set required ab, orgID, websiteID values received after approval using `pbjs.setBidderConfig`. | ||
|
||
#### Example | ||
|
||
```javascript | ||
pbjs.setBidderConfig({ | ||
bidders: ['blockthrough'], | ||
config: { | ||
ortb2: { | ||
site: { | ||
ext: { | ||
blockthrough: { | ||
ab: false, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @PavloMalashnyak please update to explain this value There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @PavloMalashnyak can you resolve this, then this is good to merge |
||
orgID: 'orgID', | ||
websiteID: 'websiteID', | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}); | ||
``` |
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.
make sure all the info in your md file in the js project is here