-
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
Doc for greebids adapter #5733
base: master
Are you sure you want to change the base?
Doc for greebids adapter #5733
Conversation
✅ Deploy Preview for prebid-docs-preview ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
Please follow the instructions here https://docs.prebid.org/dev-docs/bidder-adaptor.html#submitting-your-adapter and provide the proper meta data at the top of the file.
headings start with h3
for bidder pages.
This is the template from the page mentioned above
---
layout: bidder
title: example
description: Prebid example Bidder Adapter
biddercode: example
aliasCode: fileContainingPBJSAdapterCodeIfDifferentThenBidderCode
tcfeu_supported: true/false
dsa_supported: true/false
gvl_id: none
usp_supported: true/false
coppa_supported: true/false
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true/false
dchain_supported: true/false
userId: (list of supported vendors)
media_types: banner, video, native
safeframes_ok: true/false
deals_supported: true/false
floors_supported: true/false
fpd_supported: true/false
pbjs: true/false
pbs: true/false
prebid_member: true/false
multiformat_supported: will-bid-on-any, will-bid-on-one, will-not-bid
ortb_blocking_supported: true/partial/false
privacy_sandbox: no or comma separated list of `paapi`, `topics`
sidebarType: 1
---
### Note
The Example Bidding adapter requires setup before beginning. Please contact us at [[email protected]](mailto:[email protected]).
### Bid Params
{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------|-----------|-----------|
| `placement` | required | Placement id | `'11111'` | `string` |
37fe3cc
to
3c9f47c
Compare
I must have made a copy paste mistake cause I remember filling this, sorry. It's updated |
title: Greenbids | ||
description: Prebid Greenbids Bidder Adapter | ||
biddercode: greenbids | ||
tcfeu_supported: true |
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.
tcfeu_supported: true | |
tcfeu_supported: false |
if you have no gvl_id
you cannot claim tcfeu_supported
dev-docs/bidders/greenbids.md
Outdated
gvl_id: none | ||
usp_supported: true | ||
coppa_supported: false | ||
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp |
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.
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp | |
gpp_sids: tcfca, usnat, usstate_all, usp |
tfceu
is only supported with a gvl id
description: Prebid Greenbids Bidder Adapter | ||
biddercode: greenbids | ||
tcfeu_supported: true | ||
dsa_supported: true |
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.
Are you sure you pass the ortb DSA params through?
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.
const dsa = deepAccess(bidderRequest, 'ortb2.regs.ext.dsa');
if (dsa) {
payload.dsa = dsa;
}
🏷 Type of documentation
📋 Checklist