-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: atkachov <atkachov@admixer.ua>
- Loading branch information
1 parent
7d5da66
commit c8265eb
Showing
2 changed files
with
49 additions
and
1 deletion.
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
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,48 @@ | ||
# Overview | ||
Module Name: Future Ads Bidder Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: contact@futureads.io | ||
# Description | ||
Connects to Future Ads demand source to fetch bids. | ||
Banner and Video formats are supported. | ||
Please use ```futureads``` as the bidder code. | ||
# Test Parameters | ||
``` | ||
var adUnits = [ | ||
{ | ||
code: 'desktop-banner-ad-div', | ||
sizes: [[300, 250]], // a display size | ||
bids: [ | ||
{ | ||
bidder: "futureads", | ||
params: { | ||
zone: '2eb6bd58-865c-47ce-af7f-a918108c3fd2' | ||
} | ||
} | ||
] | ||
},{ | ||
code: 'mobile-banner-ad-div', | ||
sizes: [[300, 50]], // a mobile size | ||
bids: [ | ||
{ | ||
bidder: "futureads", | ||
params: { | ||
zone: '62211486-c50b-4356-9f0f-411778d31fcc' | ||
} | ||
} | ||
] | ||
},{ | ||
code: 'video-ad', | ||
sizes: [[300, 50]], | ||
mediaType: 'video', | ||
bids: [ | ||
{ | ||
bidder: "futureads", | ||
params: { | ||
zone: 'ebeb1e79-8cb4-4473-b2d0-2e24b7ff47fd' | ||
} | ||
} | ||
] | ||
}, | ||
]; | ||
``` |