From 828cc2542a28a9444f26ec7945f85f177a9cf70f Mon Sep 17 00:00:00 2001 From: Ivan Krdzavac Date: Thu, 28 Nov 2024 12:14:30 +0100 Subject: [PATCH 1/4] Add PBS to ogury adapter --- dev-docs/bidders/ogury.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/ogury.md b/dev-docs/bidders/ogury.md index 151191dee1..c75accc79e 100644 --- a/dev-docs/bidders/ogury.md +++ b/dev-docs/bidders/ogury.md @@ -13,8 +13,9 @@ dchain_supported: false media_types: banner safeframes_ok: false deals_supported: false +fpd_supported: false pbjs: true -pbs: false +pbs: true prebid_member: false sidebarType: 1 gpp_sids: tcfeu, usnat, usstate_all From 993ede3480cda5032e53560693f64d24377437a4 Mon Sep 17 00:00:00 2001 From: ivan83 Date: Wed, 19 Aug 2026 11:29:22 +0200 Subject: [PATCH 2/4] docs(ogury): add instream video support --- dev-docs/bidders/ogury.md | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/ogury.md b/dev-docs/bidders/ogury.md index 141be4a1c4..7da9886457 100644 --- a/dev-docs/bidders/ogury.md +++ b/dev-docs/bidders/ogury.md @@ -10,7 +10,7 @@ coppa_supported: false schain_supported: false floors_supported: true dchain_supported: false -media_types: banner +media_types: banner, video safeframes_ok: false deals_supported: false pbjs: true @@ -80,6 +80,39 @@ Use this example configuration for enabling Ogury ad server integration on a spe ``` +For video ad units, configure the `video` media type as shown below: + +```javascript +var videoAdUnits = [ + { + code: 'video-ad-unit-code', + mediaTypes: { + video: { + context: 'instream', + playerSize: [[640, 480]], + mimes: ['video/mp4', 'video/webm'], + protocols: [2, 3, 5, 6], + playbackmethod: [1, 2], + maxduration: 30 + } + }, + bids: [ + { + bidder: 'ogury', + params: { + assetKey: 'YOUR_OGURY_ASSET_KEY', + adUnitId: 'YOUR_OGURY_VIDEO_AD_UNIT_ID' + } + } + ] + } +]; + +pbjs.que.push(function () { + pbjs.addAdUnits(videoAdUnits); +}); +``` + #### Inventory mapping _Note: If you choose inventory mapping, you can skip specifying assetKey and adUnitId per ad unit._ From 34ea5a967033b5d7950c737d99a17e446b4e10ad Mon Sep 17 00:00:00 2001 From: ivan83 Date: Wed, 19 Aug 2026 12:19:15 +0200 Subject: [PATCH 3/4] docs(ogury): add instream video support --- dev-docs/bidders/ogury.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-docs/bidders/ogury.md b/dev-docs/bidders/ogury.md index 7da9886457..b6063c0c6c 100644 --- a/dev-docs/bidders/ogury.md +++ b/dev-docs/bidders/ogury.md @@ -20,7 +20,7 @@ prebid_member: false sidebarType: 1 gpp_sids: tcfeu, usnat, usstate_all --- -### Registration +## Registration Before Ogury's adapter integration, you have to register an account in the Ogury Platform. Please contact if you're interested in a partnership. If you already have an account you'll need to register your websites (= assets) and the placements (= ad units) within the Platform. Alternatively reach out to your POC within Ogury to assist you with the placement creation. @@ -34,10 +34,10 @@ This is the minimal list of params for integrating with Ogury: {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|-----------------------|-----------|-----------| -| `assetKey` | required | The asset key provided by Ogury | `'OGY-CA41D116484F'` | `string` | -| `adUnitId` | required | Your ad unit id configured with Ogury | `'2c4d61d0-90aa-0139-0cda-0242ac120004'` | `string` | +| Name | Scope | Description | Example | Type | +|------------|----------|---------------------------------------|------------------------------------------|----------| +| `assetKey` | required | The asset key provided by Ogury | `'OGY-CA41D116484F'` | `string` | +| `adUnitId` | required | Your ad unit id configured with Ogury | `'2c4d61d0-90aa-0139-0cda-0242ac120004'` | `string` | NOTE: You don't need these params to integrate with Ogury, see [inventory mapping](#inventory-mapping) @@ -165,7 +165,7 @@ pbjs.que.push(function () { ### Optional bid Params -Depending on your advertising format needs, other optional parameters can be used. Supported parameters are detailed [here](https://ogury-ltd.gitbook.io/mobile-web/header-bidding/ogury-prebid.js-adapter-integration#optional-configuration). +Depending on your advertising format needs, other optional parameters can be used. See the [optional configuration documentation](https://ogury-ltd.gitbook.io/mobile-web/header-bidding/ogury-prebid.js-adapter-integration#optional-configuration) for supported parameters. ### Contact information From b0c8cfce63899c1703d72f9599efe5229e5121d0 Mon Sep 17 00:00:00 2001 From: ivan83 Date: Fri, 21 Aug 2026 12:44:16 +0200 Subject: [PATCH 4/4] docs(ogury): add multiformat_supported --- dev-docs/bidders/ogury.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/ogury.md b/dev-docs/bidders/ogury.md index b6063c0c6c..380dcc6bbd 100644 --- a/dev-docs/bidders/ogury.md +++ b/dev-docs/bidders/ogury.md @@ -11,6 +11,7 @@ schain_supported: false floors_supported: true dchain_supported: false media_types: banner, video +multiformat_supported: will-bid-on-one safeframes_ok: false deals_supported: false pbjs: true