-
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
Add RoundhouseAds bidder documentation #5685
Open
juliansalinas121
wants to merge
17
commits into
prebid:master
Choose a base branch
from
juliansalinas121:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
474accf
Add RoundhouseAds bidder documentation
5198250
Add RoundhouseAds bidder documentation with additional information
79fd14d
Add final RoundhouseAds bidder documentation
61e5108
Final update to RoundhouseAds bidder documentation with additional in…
e1ce2c5
Add final version of RoundhouseAds bidder documentation
d6effd5
Add final version of RoundhouseAds bidder documentation
878e4e7
Remove duplicate roundhouseads.md file
b171434
Final formatting updates for RoundhouseAds bidder documentation
f342f4b
Final formatting updates for RoundhouseAds bidder documentation
52a2731
Final formatting updates for RoundhouseAds bidder documentation
cb0f717
Final formatting updates for RoundhouseAds bidder documentation
9e8a2bf
Final formatting updates for RoundhouseAds bidder documentation
df71ea2
Final formatting updates for RoundhouseAds bidder documentation
fa67126
Final formatting updates for RoundhouseAds bidder documentation
3aed29b
Final formatting updates for RoundhouseAds bidder documentation
6592573
Remove extra roundhouseads.md file from root directory
a189899
Update dev-docs/bidders/roundhouseads.md
muuki88 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,99 @@ | ||
--- | ||
layout: bidder | ||
title: RoundhouseAds | ||
description: RoundhouseAds Prebid Bidder Adapter | ||
biddercode: roundhouseads | ||
tcfeu_supported: false | ||
usp_supported: true | ||
coppa_supported: true | ||
schain_supported: true | ||
media_types: banner, video, native | ||
floors_supported: true | ||
pbjs: true | ||
sidebarType: 1 | ||
--- | ||
|
||
### Overview | ||
|
||
The RoundhouseAds Bidder Adapter connects to RoundhouseAds' advertising platform, enabling bids for display, video, and native ad formats. Please contact: [[email protected]](mailto:[email protected]) to get started. | ||
|
||
### Bid Parameters | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|----------------|----------|---------------------------------------------------------|------------------------|---------| | ||
| `placementId` | required | Unique placement identifier provided by RoundhouseAds | `'12345'` | string | | ||
| `video` | optional | Video-specific settings (only for video ad units) | `{ language: 'en' }` | object | | ||
|
||
### Test Parameters | ||
|
||
To test the RoundhouseAds adapter, use the following example ad units: | ||
|
||
```javascript | ||
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 }, | ||
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. I would recommend using the OpenRTB 2.5 native configuration instead. |
||
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' | ||
} | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
|
||
### Additional Information | ||
|
||
- **Maintainer Contact**: [[email protected]](mailto:[email protected]). | ||
|
Oops, something went wrong.
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.
This document is missing quite a few pieces of adapter metadata. Please fill out the metadata as documented at https://docs.prebid.org/dev-docs/bidder-adaptor.html#submitting-your-adapter