forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Impactify-AdTech/feature/local_storage
Impactify Bid Adapter: add handling of localstorage
- Loading branch information
Showing
3 changed files
with
90 additions
and
16 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 |
---|---|---|
|
@@ -10,12 +10,20 @@ Maintainer: [email protected] | |
|
||
Module that connects to the Impactify solution. | ||
The impactify bidder need 3 parameters: | ||
- appId : This is your unique publisher identifier | ||
- format : This is the ad format needed, can be : screen or display (Only for video media type) | ||
- style : This is the ad style needed, can be : inline, impact or static (Only for video media type) | ||
- appId : This is your unique publisher identifier | ||
- format : This is the ad format needed, can be : screen or display (Only for video media type) | ||
- style : This is the ad style needed, can be : inline, impact or static (Only for video media type) | ||
|
||
Note : Impactify adapter need storage access to work properly (Do not forget to set storageAllowed to true). | ||
|
||
# Test Parameters | ||
``` | ||
pbjs.bidderSettings = { | ||
impactify: { | ||
storageAllowed: true // Mandatory | ||
} | ||
}; | ||
var adUnitsVideo = [{ | ||
code: 'your-slot-div-id-video', // This is your slot div id | ||
mediaTypes: { | ||
|
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