-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
RoundhouseAds Bid Adapter: Add new bidder adapter with tests #12400
base: master
Are you sure you want to change the base?
Conversation
.gitignore
Outdated
@@ -80,3 +80,4 @@ typings/ | |||
|
|||
# MacOS system files | |||
.DS_Store | |||
Prebid.js/ |
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 remove this change and your change to the creative
id: bid.bidId, | ||
publisherId: bid.params.publisherId, | ||
placementId: bid.params.placementId || '', | ||
currency: bid.params.currency || 'USD', |
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 support the openrtb location
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.
This is not resolved
Type of change
Description of change
This pull request adds the RoundhouseAds Bid Adapter to Prebid.js. The adapter supports banner, video, and native ad formats, enabling integration with RoundhouseAds’ advertising platform. This update includes:
Maintainer Contact: info@roundhouseads.com
Test Parameters
To validate bid responses, use the following configuration:
var adUnits = [ { code: 'banner-ad-unit', mediaTypes: { banner: { sizes: [[300, 250]] } }, bids: [ { bidder: "roundhouseads", params: { placementId: "your-placement-id" } } ] }, { code: 'native-ad-unit', mediaTypes: { native: { title: { required: true }, body: { required: true }, image: { required: true }, icon: { required: false }, } }, bids: [ { bidder: "roundhouseads", params: { placementId: "your-placement-id" } } ] }, { code: 'video-ad-unit', mediaTypes: { video: { context: 'instream', playerSize: [640, 480], mimes: ['video/mp4'], protocols: [2, 5], maxduration: 30, linearity: 1, api: [2] } }, bids: [ { bidder: "roundhouseads", params: { placementId: "your-placement-id", video: { language: 'en' } } } ] } ];
Other information