forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Submitting EMX Digital Adapter (prebid#3173)
* Submitting EMX Digital Prebid Adapter Submitting EMX Digital Prebid Adapter code * fixing lint errors. updating our md * updating to const/let variables. adding test spec. * fixed linting on test spec js
- Loading branch information
1 parent
63afd28
commit 7b94754
Showing
3 changed files
with
487 additions
and
0 deletions.
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,38 @@ | ||
# Overview | ||
|
||
``` | ||
Module Name: EMX Digital Adapter | ||
Module Type: Bidder Adapter | ||
Maintainer: git@emxdigital.com | ||
``` | ||
|
||
# Description | ||
|
||
The EMX Digital adapter provides publishers with access to the EMX Marketplace. The adapter is GDPR compliant. Please note that the adapter supports Banner media type only. | ||
|
||
Note: The EMX Digital adapter requires approval and implementation guidelines from the EMX team, including existing publishers that work with EMX Digital. Please reach out to your account manager or prebid@emxdigital.com for more information. | ||
|
||
The bidder code should be ```emx_digital``` | ||
The params used by the bidder are : | ||
```tagid``` - string (mandatory) | ||
```bidfloor``` - string (optional) | ||
|
||
# Test Parameters | ||
``` | ||
var adUnits = [{ | ||
code: 'banner-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [ | ||
[300, 250], [300, 600] | ||
} | ||
}, | ||
bids: [ | ||
{ | ||
bidder: 'emx_digital', | ||
params: { | ||
tagid: '25251', | ||
} | ||
}] | ||
}]; | ||
``` |
Oops, something went wrong.