Back to Bidders

StroeerCore

Features

Bidder Code stroeerCore Prebid.org Member no
Media Types display, video GDPR TCF Support yes
User IDs criteo, id5Id, netId, pubCommonId, sharedId USP/CCPA Support no
Supply Chain Support yes COPPA Support no
Demand Chain Support no GPP Support no
Supports Deals yes Prebid.js Adapter yes
IAB GVL ID 136 Prebid Server Adapter yes
Floors Module Support no First Party Data Support no
Multi Format Support will-bid-on-one ORTB Blocking Support check with bidder
Safeframes OK yes

"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_stroeerCore hb_bidder_stroeerCor hb_adid_stroeerCore
hb_size_stroeerCore hb_source_stroeerCor hb_format_stroeerCor
hb_cache_host_stroee hb_cache_id_stroeerC hb_uuid_stroeerCore
hb_cache_path_stroee hb_deal_stroeerCore

Bid Params

Name Scope Description Example Type
sid required Slot ID '06b782cc-091b-4f53-9cd2-0291679aa1ac' string

Ad Unit Configuration

  • The server will ignore sizes that are not supported by the slot or by the platform (such as 987x123).
Example
var adUnits = [
  { 
    code: 'your-banner-adunit-code',
    mediaTypes: {
      banner: {
        sizes: [[300, 250]],
      }
    },
    bids: [{
      bidder: 'stroeerCore',
      params: {
        sid: '06b782cc-091b-4f53-9cd2-0291679aa1ac'
      }    
    }]
  }
];

Video

  • Both instream and outstream contexts are supported.
  • We do not provide an outstream renderer. You will need to set up your own. See Show Outstream Video Ads for more information.
  • On mediaTypes.video, the fields context and mediaTypes are required.
Example
var adUnits = [
  {
    code: 'your-video-adunit-code',
    mediaTypes: {
      video: {
        context: 'instream',
        playerSize: [640, 480],
        mimes: ['video/mp4', 'video/quicktime', 'video/x-ms-wmv']
      }
    },
    bids: [{
      bidder: 'stroeerCore',
      params: {
        sid: '35d4225e-f8e3-4f45-b1ea-77913afd00d1'
      }
    }]
  }
];

Back to Bidders