Update Prebid with Nexx360 Adapter

Update Prebid.js with Nexx360 Adapter

Once your tagIds are created, you need to update Prebid.js and add Nexx360 adapter.

You can download "Nexx360" adapter on this page: https://docs.prebid.org/download.html.

Configure Nexx360 IDs

You then have to configure the tagIds or placements created before, like with any other bidder integration.

Here is an example of an ad unit with Nexx360 adapter configured:

{
                    code: '/19968336/header-bid-tag-0',
                    mediaTypes: {
                        banner: {
                            sizes: [[300,250], [300,600]]
                        }
                    },
                    bids: [{
                        bidder: 'nexx360',
                        params: {
                            tagId: 'testnexx',
                            placement: 'TEST_PLACEMENT_GABRIEL'
                        }
                    }]
                }

You can find more information on Nexx360 adapter on this page: https://docs.prebid.org/dev-docs/bidders/nexx360.html.

Targeting to include SSP

You can add the following snippet to add a specific key value to get details about demandSource into the adserver targeting:

pbjs.bidderSettings = {
    nexx360: {
        adserverTargeting: [{
            key: "nexx360_ssp",
            val: function(e) {
                return e.meta.demandSource
            }
        }]
    }
}

Configure User Syncing

In case you applied specific settings to user sync configuration and limited the bidders allowed to sync, don't forget to add Nexx360 in the configuration.

For more details, you can refer to this page : https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing.

We recommand the following setup

pbjs.setConfig({
    userSync: {
        filterSettings: {
            all: {
                bidders: '*',   // '*' means all bidders
                filter: 'include'
            }
        }
    }
});

Last updated

Was this helpful?