Skip to content

Latest commit

 

History

History
67 lines (60 loc) · 1.71 KB

adliveplus.md

File metadata and controls

67 lines (60 loc) · 1.71 KB
layout title description biddercode aliasCode tcfeu_supported gvl_id usp_supported coppa_supported schain_supported dchain_supported media_types safeframes_ok deals_supported floors_supported fpd_supported pbjs pbs prebid_member ortb_blocking_supported privacy_sandbox sidebarType
bidder
Adlive Plus
Adlive Plus adapter
adliveplus
lucead
true
1309
false
false
true
false
banner
true
true
true
true
true
false
false
false
paapi
1

Note

This adapter requires setup before beginning. Please contact us at support@adlive.io.

Bid Params

{: .table .table-bordered .table-striped }

Name Scope Description Example Type
placementId required Placement ID '1' string
loader required Site specific async loader code new Promise(...) Promise
region optional Endpoint region 'ap' string

Params type definition

type Params = {
    placementId: string;
    loader: Promise<any>;
    region?: 'eu' | 'us' | 'ap';
};

Test Params

const adUnits = [
    {
        code: 'test-div',
            sizes: [[300, 250]],
            bids: [
               {
                   bidder: 'adliveplus',
                   params: {
                       placementId: '1', // required
                       loader: new Promise(/* ... */), // required
                       region: 'ap', // optional 'eu', 'us', 'ap'
                   }
               }
           ]
       }
];