From 2bc10be013101148aababddd0a4a291e15682b75 Mon Sep 17 00:00:00 2001 From: Piotr Jaworski Date: Mon, 29 May 2023 10:11:21 +0200 Subject: [PATCH] RTB House: add fledge docs; reorganization --- dev-docs/bidders/rtbhouse.md | 37 ++++++++++++++++++++++++++++++------ 1 file changed, 31 insertions(+), 6 deletions(-) diff --git a/dev-docs/bidders/rtbhouse.md b/dev-docs/bidders/rtbhouse.md index 60b4ca65bf..91cad3e134 100644 --- a/dev-docs/bidders/rtbhouse.md +++ b/dev-docs/bidders/rtbhouse.md @@ -28,14 +28,20 @@ sidebarType: 1 | `bidfloor` | optional | Minimal CPM value | `0.01` | `float` | | `channel` | optional | Inventory channel identifier, limited to 50 characters | `Partner 1 - News` | `string` | -#### ORTB Blocking +#### Please note: + +* Since 4.43 the bidfloor param will be ignored if a value is specified via floor module. + +* The channel param is available starting from Prebid 6.6.0. Please reach your RTBHouse representative for details on how to enable and use the channel param. + +### ORTB Blocking RTB House supports blocking advertisers in `badv` and categories in `bcat` parameters. The blocked advertisers/categories list has no length limitation, but response timeout is more likely to occur as the number of entries grow. Blocked advertisers list (`badv`) is an array of domains as strings. Blocked categories list (`bcat`) is an array of IAB categories as strings. For example: -##### Globally defined ORTB Blocking: +#### Globally defined ORTB Blocking: ```javascript pbjs.setConfig({ ortb2: { @@ -44,7 +50,7 @@ pbjs.setConfig({ } )}; ``` -##### ORTB Blocking specific only to rtbhouse bidder: +#### ORTB Blocking specific only to rtbhouse bidder: ```javascript pbjs.setBidderConfig({ bidders: ['rtbhouse'], @@ -59,8 +65,27 @@ pbjs.setBidderConfig({ ### Setting up the Prebid Server Adapter If you’re a Prebid Server host company looking to enable the RTB House server-side adapter, you'll need to contact prebid@rtbhouse.com. They will guide you through the process. Do not use the default bidder config file as it will require custom partner code to be entered. It will be provided by RTB House. -### Please note: -* Since 4.43 the bidfloor param will be ignored if a value is specified via floor module. +### Protected Audience API (FLEDGE) support +There’s an option to receive demand for Protected Audience API (FLEDGE/PAAPI) +ads using RTB House bid adapter. +Prebid’s [fledgeForGpt](https://docs.prebid.org/dev-docs/modules/fledgeForGpt.html) +module and Google Ad Manager is currently required. -* The channel param is available starting from Prebid 6.6.0. Please reach your RTBHouse representative for details on how to enable and use the channel param. +The following steps should be taken to setup Protected Audience for RTB House: + +1. Reach out to your RTB House representative for setup coordination. + +2. Build and enable FLEDGE module as described in +[fledgeForGpt](https://docs.prebid.org/dev-docs/modules/fledgeForGpt.html) +module documentation. + + a. Make sure to enable RTB House bidder to participate in FLEDGE. If there are any other bidders to be allowed for that, add them to the **bidders** array: +```javascript +pbjs.setBidderConfig({ + bidders: ["rtbhouse"], + config: { + fledgeEnabled: true + } +}); +```