Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This specific page contains brief information on how to get started with Prebid using our demand.

Quick Start Guide

  1. Download PrebidJS

  2. Select the latest version of Prebid to maximize revenue (

...

  1. 8.

...

  1. 16.0 or higher)

  2. Check the box for ‘Sharethrough’

...

  1. Select the “Get Prebid.js!” button to download the library on browser.

  2. This Prebid library may then be added to your web page making Prebid functions and methods available for use, we recommend using a test page to configure Prebid before going live in

...

  1. production.

  2. Push Price Priority Line Items to your publisher adserver (for instance GAM for those using Google’s adserver) using the defined price granularity and setup specific for that adserver.

    1. This Python project does a good job for users semi-familiar with the Ad Manager API and Python

    2. Use the key-values 'sharethrough' per the bidder parameters documentation from Prebid.

  3. Configure the ad units for which you want the sharethrough bidder to return bid responses. Sharethrough supports

...

  1. banner, native and video impression requests as of version

...

  1. 8.

...

  1. 16.0 or higher.
    See the general Prebid documentation for adunit configuration for reference.

  2. For each ad unit (banner or native), the potential parameters (marked required and optional as relevant) are:

Code Block
languagejs
{
  bidder: "sharethrough",
  params: {
    // REQUIRED - The placement key as defined in the STR publisher platform
    pkey: 'LuB3vxGGFrBZJa6tifXW4xgK',

    // OPTIONAL - Blocked Advertiser Domains
    badv: ['domain1.com', 'domain2.com'],

    // OPTIONAL - Blocked Categories (IAB codes)
    bcat: ['IAB1-1', 'IAB1-2'],

    // OPTIONAL - default bid floor, if not specified in bid request (USD)
    floor: 0.1,
  }
}

...

11. After configuring your bid array, Sharethrough should start immediately competing in your header bidding auction. Be sure to add Sharethrough to your ads.txt file.
12. Note that the Sharethrough adapter does NOT support multiple formats (banner, video) for the same placement key.
13. Sharethrough adapter does NOT support mediaType of native.
14. For the default values specified for the mediaType of video, if they are specified, they will override the default values shown here. If the default values are fine, no specification of a value at the ad unit level is necessary.

...

Supported mediaTypes

  • Banner

  • Native

  • Video (instream and outstream)

...