Skip to content

Latest commit

 

History

History
89 lines (82 loc) · 2.21 KB

goldbachBidAdapter.md

File metadata and controls

89 lines (82 loc) · 2.21 KB

Goldbach Bidder Adapter

Overview

Module Name: Goldbach Bidder Adapter
Module Type: Bidder Adapter
Maintainer: [email protected]

Description

Module that connects to Goldbach SSP demand sources.

gulp build --modules=goldbachBidAdapter,userId,pubProvidedIdSystem

Test Parameters

    var adUnits = [
        {
            code: 'au-1',
                mediaTypes: {
                    video: {
                        sizes: [[640, 480]],
                        maxduration: 30,
                    }
                },
            bids: [
                {
                    bidder: 'goldbach',
                    params: {
                        publisherId: 'goldbach_debug',
                        slotId: '/1235/example.com/video/video/example'
                    }
                }
            ]
        },
        {
            code: 'au-2',
            sizes: [[1, 1]],
            mediaTypes: {
                native: {
                    title: {
                        required: true,
                        len: 50
                    },
                    image: {
                        required: true,
                        sizes: [300, 157]
                    },
                    icon: {
                        required: true,
                        sizes: [30, 30]
                    }
                }
            },
            bids: [
                {
                    bidder: 'goldbach',
                    params: {
                        publisherId: 'goldbach_debug',
                        slotId: '/1235/example.com/inside-full-test-native/example'
                    }
                }
            ]
        }, 
        {
            code: 'au-3',
            sizes: [[300, 250]],
            mediaTypes: {
                banner: {
                    sizes: [[300, 250]],
                }
            },
            bids: [
                {
                    bidder: 'goldbach',
                    params: {
                        publisherId: 'goldbach_debug',
                        slotId: '/1235/example.com/inside-full-test-banner/example'
                    }
                }
            ]
        }, 
    ];