Skip to content

Latest commit

 

History

History
55 lines (52 loc) · 1.27 KB

nobidBidAdapter.md

File metadata and controls

55 lines (52 loc) · 1.27 KB
layout title description biddercode hide media_types gdpr_supported usp_supported gpp_supported
bidder
Nobid
Prebid Nobid Bidder Adaptor
nobid
true
banner, video
true
true
true

Bid Params

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

Name Scope Description Example Type
siteId required siteId is provided by your Nobid account manager integer

Test Parameters

    var adUnits = [
        {
            code: 'test-div',
            mediaTypes: {
                banner: {
                    sizes: [[300, 250]],  // a display size
                }
            },
            bids: [
                {
                    bidder: "nobid",
                    params: {
                        siteId: 2
                    }
                }
            ]
        },{
            code: 'test-div',
            mediaTypes: {
                banner: {
                    sizes: [[320, 50]],   // a mobile size
                }
            },
            bids: [
                {
                    bidder: "nobid",
                    params: {
                        siteId: 2
                    }
                }
            ]
        }
    ];