Skip to content
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

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

juliansalinas121
Copy link

Type of change

•	New bidder adapter

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:

•	The main adapter code with full support for multiple media types.
•	Comprehensive unit tests with over 80% code coverage.
•	Example configuration code to assist in integration.

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

•	Documentation: The bidder parameter documentation PR is submitted at [prebid/prebid.github.io](https://github.com/prebid/prebid.github.io).
•	Testing: This adapter was tested using the [Hello World](https://github.com/prebid/Prebid.js/blob/master/integrationExamples/gpt/hello_world.html) sample page to verify bid responses and integration with our ad server.

.gitignore Outdated
@@ -80,3 +80,4 @@ typings/

# MacOS system files
.DS_Store
Prebid.js/
Copy link
Collaborator

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',
Copy link
Collaborator

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

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not resolved

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants