Skip to content

Latest commit

 

History

History
56 lines (47 loc) · 1.64 KB

File metadata and controls

56 lines (47 loc) · 1.64 KB
layout bidder
title Ad Generation
description Prebid Ad Generation Bidder Adaptor
schain_supported true
pbjs true
pbs false
pbs_app_supported false
fpd_supported true
biddercode adgeneration
userIds all
media_types native
sidebarType 1

Bid Params

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

Name Scope Description Example Type
id required adId '1234' string

First Party Data

In release 1.6.4 and later, publishers should use the ortb2 method of setting First Party Data. The following fields are supported:

  • ortb2.site.content.data[]

If ad-generation.jp is specified for ortb2.site.content.data[].name and 546 is specified for ortb2.site.content.data[].ext.segtax, ortb2.site.content.data[].segment[].id and ortb2.site.content.data[].segment[].value can be any string value.

Example first party data that's available to all bidders and all adunits:

pbjs.setConfig({
    ortb2: {
        site: {
            content: {
                data: [{
                    name: "ad-generation.jp",
                    ext: {
                        segtax: 546
                    },
                    segment: [
                        { id: "news_category", value: "Sports_Sumo" },// id and value must be string types
                        { id: "local_gourmet", value: "sushi" },
                        { id: "location", value: "tokyo" },
                        { id: "code", value: "1001"}
                    ]
                }]
            }
        },
    }
});