From 3bd863634716943aecf5c0dddead4c7affb7ca36 Mon Sep 17 00:00:00 2001 From: Micke Date: Wed, 26 Feb 2020 13:51:16 +0100 Subject: [PATCH 1/5] Adnuntius Bidder documentation added --- .../main.scssc | Bin 0 -> 502 bytes dev-docs/bidders/adnuntius.md | 54 ++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 .sass-cache/a8ae1fbf8fe3cf0ae44282e4f927a25624204c54/main.scssc create mode 100644 dev-docs/bidders/adnuntius.md diff --git a/.sass-cache/a8ae1fbf8fe3cf0ae44282e4f927a25624204c54/main.scssc b/.sass-cache/a8ae1fbf8fe3cf0ae44282e4f927a25624204c54/main.scssc new file mode 100644 index 0000000000000000000000000000000000000000..6db4f74c3a9fee8e8dc651dd996b91b928e63d22 GIT binary patch literal 502 zcmb7=F;BxV5QRISQc_A0QxOa5ij)M>w2iZ5p;8uvXg7w)i7$;sVn;q#2qFGEmz0GK zw!3HFz58C^uH1zqco6XbAcSSU$bAt!gkfGn8HG##ejWL|6l;IwN6yJev+FHKWNc>u z7<amSpbmI~yM zT_vawrhv?FwFk{+N1tskl2fOiv1x*q8=JKnHM{x!5ok3p;ze!yhavp;Ble6)<7Q+P)h0i?r%P{eM6WAc%A)!aF!sYo^{b@@7yS<_7v1; N3$_EUI96YS%{Th+qY(fA literal 0 HcmV?d00001 diff --git a/dev-docs/bidders/adnuntius.md b/dev-docs/bidders/adnuntius.md new file mode 100644 index 0000000000..fceb3fda82 --- /dev/null +++ b/dev-docs/bidders/adnuntius.md @@ -0,0 +1,54 @@ +--- +layout: bidder +title: Adnuntius +description: Prebid Adnuntius Bidder Adaptor +hide: true +biddercode: adnuntius +media_types: banner +gdpr_supported: false +--- + + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|-------------|----------|----------------------------------------------------------------------|----------|----------| +| `auId` | required | The ad unit ID `'0000000000072345'` leading zeros can be omitted. | `string` | | +| `network` | optional | Used if you want to make requests to multiple networks in adnuntius. | `string` | | +| `targeting` | optional | Targeting to be sent through to adnuntius with the request. | `string` | | + + + +#### Targeting + +In order to send targeting to the adnuntius adserver we recommend that you read this documentation. + +[Adnuntius Documentation](https://docs.adnuntius.com/adnuntius-advertising/requesting-ads/intro) + + +#### Example + +Here's an example of sending targeting information about categories to adnuntius via the bid request: +``` +{ + code: "0000000000072345", + mediaTypes: { + banner: { + sizes: [[980, 360], [980, 300], [980, 240], [980, 120]] + } + }, + bids: [ + { + bidder: "adnuntius", + params: { + auId: "8b6bc", + network: "adnuntius", + targeting: { + c: ['prebids'] + } + } + } + ] +} +``` \ No newline at end of file From 7781299b2e87edc832663c456802a24c50576be3 Mon Sep 17 00:00:00 2001 From: Micke Date: Thu, 27 Feb 2020 15:40:21 +0100 Subject: [PATCH 2/5] Fixed targeting text. --- dev-docs/bidders/adnuntius.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dev-docs/bidders/adnuntius.md b/dev-docs/bidders/adnuntius.md index fceb3fda82..fc68317fa1 100644 --- a/dev-docs/bidders/adnuntius.md +++ b/dev-docs/bidders/adnuntius.md @@ -22,9 +22,7 @@ gdpr_supported: false #### Targeting -In order to send targeting to the adnuntius adserver we recommend that you read this documentation. - -[Adnuntius Documentation](https://docs.adnuntius.com/adnuntius-advertising/requesting-ads/intro) +The [Adnuntius Documentation](https://docs.adnuntius.com/adnuntius-advertising/requesting-ads/intro) provides detailed information on sending targeting data to the Adnuntius adserver. #### Example From 66152e7a276323b4beaa421b5300d78405d2592b Mon Sep 17 00:00:00 2001 From: Mikael Lundin Date: Wed, 19 May 2021 20:07:55 +0200 Subject: [PATCH 3/5] Added documentation for passing segments in the bidder config. --- dev-docs/bidders/adnuntius.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/adnuntius.md b/dev-docs/bidders/adnuntius.md index cf329a7b16..b16d3826f6 100644 --- a/dev-docs/bidders/adnuntius.md +++ b/dev-docs/bidders/adnuntius.md @@ -5,7 +5,7 @@ description: Prebid Adnuntius Bidder Adaptor pbjs: true biddercode: adnuntius media_types: banner -gdpr_supported: false +gdpr_supported: true --- ### Bid Params @@ -47,3 +47,17 @@ Here's an example of sending targeting information about categories to adnuntius ] } ``` + +### Sending segments to the ad server + +There's an option to send segment id in the bidder config that will be picked up and sent to the ad server. Below is an example on how to do this: + +``` +pbjs.setBidderConfig({ + bidders: ['adnuntius'], + config: { + segments: ["segmentId1", 'segmentId2'] + } +}); +´´´ +``` From 79aed731ad00848c43aa3ceac7ac51686f2ceca3 Mon Sep 17 00:00:00 2001 From: Mikael Lundin Date: Thu, 27 May 2021 14:23:34 +0200 Subject: [PATCH 4/5] changed the way to send user segments to bidder. --- dev-docs/bidders/adnuntius.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/dev-docs/bidders/adnuntius.md b/dev-docs/bidders/adnuntius.md index b16d3826f6..f6b753a07e 100644 --- a/dev-docs/bidders/adnuntius.md +++ b/dev-docs/bidders/adnuntius.md @@ -53,11 +53,23 @@ Here's an example of sending targeting information about categories to adnuntius There's an option to send segment id in the bidder config that will be picked up and sent to the ad server. Below is an example on how to do this: ``` -pbjs.setBidderConfig({ - bidders: ['adnuntius'], - config: { - segments: ["segmentId1", 'segmentId2'] - } -}); + + pbjs.setBidderConfig({ + bidders: ['adnuntius', 'bidderB'], + config: { + ortb2: { + user: { + data: [{ + name: "adnuntius", + segment: [ + { id: "1" }, + { id: "2" } + ] + }] + } + } + } + }); + ´´´ ``` From 5899ae836ac89e09bd888261ef2b09fac4a928c6 Mon Sep 17 00:00:00 2001 From: Mikael Lundin Date: Thu, 27 May 2021 14:26:35 +0200 Subject: [PATCH 5/5] Moved string to type + examples. --- dev-docs/bidders/adnuntius.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/adnuntius.md b/dev-docs/bidders/adnuntius.md index f6b753a07e..cdb2766ccd 100644 --- a/dev-docs/bidders/adnuntius.md +++ b/dev-docs/bidders/adnuntius.md @@ -13,9 +13,9 @@ gdpr_supported: true {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |-------------|----------|----------------------------------------------------------------------|----------|----------| -| `auId` | required | The ad unit ID `'0000000000072345'` leading zeros can be omitted. | `string` | | -| `network` | optional | Used if you want to make requests to multiple networks in adnuntius. | `string` | | -| `targeting` | optional | Targeting to be sent through to adnuntius with the request. | `string` | | +| `auId` | required | The ad unit ID `'0000000000072345'` leading zeros can be omitted. | `'0000000000072345'` | `string` | +| `network` | optional | Used if you want to make requests to multiple networks in adnuntius. | `'adnuntius'` | `string`| +| `targeting` | optional | Targeting to be sent through to adnuntius with the request. | `{ c: ['prebids'] }` | `string`| #### Targeting