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.
Lucead Bid Adapter: Update (prebid#11488)
* Lucead Bid Adapter: Support Single Request Architecture mode + enhanced reporting + updated PAAPI auction config * PB9 compliance * Added TCF Global Vendor List ID * Add GVLID to Lucead RTD Provider * Add domain in impression tracking * remove RTD related files * remove useless code * remove lucead from adloader
- Loading branch information
Showing
4 changed files
with
186 additions
and
133 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 |
---|---|---|
@@ -1,29 +1,41 @@ | ||
# Overview | ||
# Lucead Bid Adapter | ||
|
||
Module Name: Lucead Bidder Adapter | ||
- Module Name: Lucead Bidder Adapter | ||
- Module Type: Bidder Adapter | ||
- Maintainer: [email protected] | ||
|
||
Module Type: Bidder Adapter | ||
## Description | ||
|
||
Maintainer: [email protected] | ||
Module that connects to Lucead demand source. | ||
|
||
# Description | ||
## Adapter configuration | ||
|
||
Module that connects to Lucead demand source to fetch bids. | ||
## Ad units parameters | ||
|
||
# Test Parameters | ||
### Type definition | ||
|
||
```typescript | ||
type Params = { | ||
placementId: string; | ||
region?: 'eu' | 'us' | 'ap'; | ||
}; | ||
``` | ||
const adUnits = [ | ||
{ | ||
code: 'test-div', | ||
sizes: [[300, 250]], | ||
bids: [ | ||
{ | ||
bidder: 'lucead', | ||
params: { | ||
placementId: '2', | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
|
||
### Example code | ||
```javascript | ||
const adUnits=[ | ||
{ | ||
code:'test-div', | ||
sizes:[[300,250]], | ||
bids:[ | ||
{ | ||
bidder: 'lucead', | ||
params:{ | ||
placementId: '1', | ||
region: 'us', // optional: 'eu', 'us', 'ap' | ||
} | ||
} | ||
] | ||
} | ||
]; | ||
``` |
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
Oops, something went wrong.