-
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
Dailymotion Bid Adaptor: initial release #5091
Merged
Merged
Changes from 3 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
cf02545
Dailymotion Bid Adaptor: initial release
f178b49
.md file lint issue resolved
Aditi0101 fce9ec3
Merge pull request #3 from dailymotion-oss/feat/dailymotion-adaptor
sebmil-daily 3fec553
Dailymotion Bid Adaptor: add documentation for video metadata support
f383359
Merge branch 'prebid:master' into master
kvnsw 279f5be
feat(LEO-528): Allow multiple IAB categories in video metadata
sebmil-daily ec14d31
Merge branch 'prebid:master' into master
kvnsw d52ee71
Dailymotion bid adapter: Clarify the video metadata to provide in eac…
sebmil-daily 33991e3
Merge pull request #6 from dailymotion-oss/LEO-528_fix_metadata_doc
sebmil-daily 95082b4
Dailymotion bid adapter: Move API key to bid params
sebmil-daily 666411b
Merge branch 'prebid:master' into master
kvnsw 4a344f2
Merge branch 'prebid:master' into master
kvnsw ff5108d
Dailymotion Bid Adaptor: update docs for ortb2 & app & livestream sup…
ce0d356
Dailymotion Bid Adaptor: add gpp support
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,79 @@ | ||
--- | ||
layout: bidder | ||
title: Dailymotion | ||
description: Dailymotion Prebid Bidder Adapter | ||
pbjs: true | ||
pbs: false | ||
biddercode: dailymotion | ||
media_types: video | ||
gvl_id: 573 | ||
tcfeu_supported: true | ||
usp_supported: true | ||
coppa_supported: true | ||
deals_supported: true | ||
floors_supported: true | ||
sidebarType: 1 | ||
safeframes_ok: true | ||
ortb_blocking_supported: false | ||
--- | ||
|
||
### Registration | ||
|
||
To use the adapter with any non-test request, you first need to ask an API key from Dailymotion. Please contact us through <[email protected]> . | ||
|
||
This API key will ensure proper identification of your inventory and allow you to get real bids. | ||
|
||
# Configuration options | ||
|
||
Before calling this adapter, you need to set its configuration with a call to setConfig like this: | ||
|
||
```javascript | ||
config.setConfig({ | ||
dailymotion: { | ||
api_key: 'test_api_key', | ||
position: 'test_position', | ||
xid: 'x123456' | ||
} | ||
}); | ||
``` | ||
|
||
This call must be made before each auction. Here's a description of each parameter: | ||
|
||
* `api_key` is your publisher API key. For testing purpose, you can use "dailymotion-testing". | ||
* `position` parameter is the ad position in the video and must either be "preroll", "midroll" or "postroll". | ||
* `xid` is the Dailymotion video identifier and should be provided to have better contextual data and higher fillrate. | ||
|
||
# Test Parameters | ||
|
||
By setting the following configuration options, you'll get a constant response to any request to validate your adapter integration: | ||
|
||
```javascript | ||
config.setConfig({ | ||
dailymotion: { | ||
api_key: 'dailymotion-testing', | ||
position: 'preroll' | ||
} | ||
}); | ||
``` | ||
|
||
Please note that failing to set these configuration options will result in the adapter not bidding at all. | ||
|
||
## Sample video AdUnit | ||
|
||
```javascript | ||
const adUnits = [ | ||
{ | ||
code: 'test-ad-unit', | ||
mediaTypes: { | ||
video: { | ||
context: 'instream', | ||
playerSize: [1280, 720], | ||
}, | ||
}, | ||
bids: [{ | ||
bidder: "dailymotion", | ||
params: {} | ||
}] | ||
} | ||
]; | ||
``` |
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.
Oh nice! You made video and safe-frames work 😍