-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New Adapter: Start.io #6018
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
base: master
Are you sure you want to change the base?
New Adapter: Start.io #6018
Conversation
✅ Deploy Preview for prebid-docs-preview ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
title: Start.io | ||
biddercode: startio | ||
description: Prebid Start.io Adapter | ||
tcfeu_supported: false |
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.
You have a gvl_id
, why don't you support TCF then?
coppa_supported: false | ||
gpp_supported: false | ||
floors_supported: false | ||
media_types: banner, video, native |
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.
If you support multiple formats, please specify the behaviour on multi format ad units
multiformat_supported: will-bid-on-any, will-bid-on-one, will-not-bid
```js | ||
<script> | ||
var adUnits = [ | ||
{ | ||
code: "div-gpt-ad-12345-0", | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]] | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: "startio", | ||
params: { | ||
publisherId: "publisher-12345" | ||
} | ||
} | ||
] | ||
} | ||
] | ||
|
||
pbjs.que.push(function() { | ||
pbjs.addAdUnits(adUnits); | ||
}); | ||
</script> | ||
``` |
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.
```js | |
<script> | |
var adUnits = [ | |
{ | |
code: "div-gpt-ad-12345-0", | |
mediaTypes: { | |
banner: { | |
sizes: [[300, 250]] | |
} | |
}, | |
bids: [ | |
{ | |
bidder: "startio", | |
params: { | |
publisherId: "publisher-12345" | |
} | |
} | |
] | |
} | |
] | |
pbjs.que.push(function() { | |
pbjs.addAdUnits(adUnits); | |
}); | |
</script> | |
``` | |
```js | |
var adUnits = [ | |
{ | |
code: "div-gpt-ad-12345-0", | |
mediaTypes: { | |
banner: { | |
sizes: [[300, 250]] | |
} | |
}, | |
bids: [ | |
{ | |
bidder: "startio", | |
params: { | |
publisherId: "publisher-12345" | |
} | |
} | |
] | |
} | |
] | |
pbjs.que.push(function() { | |
pbjs.addAdUnits(adUnits); | |
}); |
now it is javascript :wink:
#### Supported Media Types | ||
|
||
- Banner | ||
- Native | ||
- Video (instream and outstream) | ||
|
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.
#### Supported Media Types | |
- Banner | |
- Native | |
- Video (instream and outstream) |
This is not necessary. The media types are specified in the meta data already
#### Default Ad Server Key Value | ||
|
||
- `startio` |
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.
#### Default Ad Server Key Value | |
- `startio` |
This is the biddercode
in the meta data and is not required to be listed here
🏷 Type of documentation
📋 Checklist
New Adapter: Start.io prebid-server#4324
New Adapter: Start.io prebid-server-java#3941
Start.io Bid Adapter : initial release Prebid.js#13048