Back to Bidders

Adlive Plus

Features

Bidder Code adliveplus Prebid.org Member no
Prebid.js Adapter yes Prebid Server Adapter no
Media Types display Multi Format Support check with bidder
TCF-EU Support yes IAB GVL ID 1309
GPP Support check with bidder DSA Support check with bidder
USP/CCPA Support no COPPA Support no
Supply Chain Support yes Demand Chain Support no
Safeframes OK yes Supports Deals yes
Floors Module Support yes First Party Data Support yes
User IDs none ORTB Blocking Support no
Privacy Sandbox paapi

Note

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

Bid Params

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'
                   }
               }
           ]
       }
];

"Send All Bids" Ad Server Keys

These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.
hb_pb_adliveplus hb_bidder_adliveplus hb_adid_adliveplus
hb_size_adliveplus hb_source_adliveplus hb_format_adliveplus
hb_cache_host_adlive hb_cache_id_adlivepl hb_uuid_adliveplus
hb_cache_path_adlive hb_deal_adliveplus

Back to Bidders