From 6c1ddae08e269c7daf52a8be99d051286c98af9c Mon Sep 17 00:00:00 2001 From: noamtzu Date: Tue, 6 Jul 2021 15:24:10 +0300 Subject: [PATCH 1/4] Update Rise readme --- dev-docs/bidders/rise.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index 42c67e4c5a..df18571ba5 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -67,3 +67,6 @@ pbjs.setConfig({ } } }); + +### Versions +Prebid versions 5.0-5.3 are not supported From 42ded1b2274ef5a72021889fccae28e419a88991 Mon Sep 17 00:00:00 2001 From: noamtzu Date: Sun, 3 Apr 2022 18:07:21 +0300 Subject: [PATCH 2/4] fix rise doc --- dev-docs/bidders/rise.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index fc478d4cdd..0f7eae5bd0 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -20,7 +20,7 @@ The Rise adapter requires setup and approval. Please reach out to prebid-rise-en ### Bid Parameters -#### Video +#### Banner, Video {: .table .table-bordered .table-striped } | Name | Scope | Type | Description | Example From dfbcceaacf8b398c5baaf5c48102be921bedd89d Mon Sep 17 00:00:00 2001 From: noamtzu Date: Thu, 28 Apr 2022 09:22:38 +0300 Subject: [PATCH 3/4] change rise docs --- dev-docs/bidders/rise.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-docs/bidders/rise.md b/dev-docs/bidders/rise.md index 0f7eae5bd0..0a29c3780c 100644 --- a/dev-docs/bidders/rise.md +++ b/dev-docs/bidders/rise.md @@ -1,7 +1,8 @@ --- layout: bidder title: Rise -description: Prebid Bidder Adaptor +description: Prebid Rise Bidder Adapter +multiformat_supported: will-bid-on-any pbjs: true biddercode: rise media_types: banner, video From 8019c4f8fb9047781b9caea7ed11cbbe8d99cb7a Mon Sep 17 00:00:00 2001 From: noamtzu Date: Wed, 25 May 2022 14:41:19 +0300 Subject: [PATCH 4/4] shinez --- dev-docs/bidders/shinez.md | 94 ++++++++++++++++++++++++++------------ 1 file changed, 66 insertions(+), 28 deletions(-) diff --git a/dev-docs/bidders/shinez.md b/dev-docs/bidders/shinez.md index d1254a4dd4..d877737ac1 100644 --- a/dev-docs/bidders/shinez.md +++ b/dev-docs/bidders/shinez.md @@ -2,42 +2,80 @@ layout: bidder title: Shinez description: Prebid Shinez Bidder Adapter -biddercode: shinez -media_types: banner +multiformat_supported: will-bid-on-any pbjs: true -enable_download: false -pbjs_version_notes: not ported to 5.x +biddercode: shinez +media_types: banner, video +schain_supported: true +usp_supported: true +floors_supported: true +userIds: all +fpd_supported: true --- -### Registration +### Note -The Shinez adapter requires setup and approval from the Shinez team. Please reach out to tech-team@shinez.io for more information. +The Shinez adapter requires setup and approval. Please reach out to tech-team@shinez.io to setup an Shinez account. -### Bid Params - -{: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------|----------|----------------------|------------|----------| -| `placementId` | required | A Shinez-specific identifier that is associated with a specific domain provided by your Shinez representative. | `'00654321'` | `string` | -| `unit` | optional | An alphanumerical value used to identify the slot_id in reporting. | `'__header-bid-1'` | `string` | +### Bid Parameters -### Examples +#### Banner, Video -#### Example Banner Ad Unit +{: .table .table-bordered .table-striped } +| Name | Scope | Type | Description | Example +| ---- | ----- | ---- | ----------- | ------- +| `org` | required | String | Shinez publisher Id provided by your Shinez representative | "56f91cd4d3e3660002000033" +| `floorPrice` | optional | Number | Minimum price in USD.

**WARNING:**
Misuse of this parameter can impact revenue | 2.00 +| `placementId` | optional | String | A unique placement identifier | "12345678" +| `testMode` | optional | Boolean | This activates the test mode | false +## Example ```javascript -var adUnit = { - code: "test-div", - mediaTypes: { - banner: { - sizes: [[300, 250]] - } - }, - bids: [{ - bidder: "shinez", - params: { - placementId: "00654321" +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [ + [300, 250], + [728, 90] + ] + } + }, + bids: [{ + bidder: 'shinez', + params: { + org: '56f91cd4d3e3660002000033', // Required + floorPrice: 0.05, // Optional + placementId: '12345678', // Optional + testMode: false // Optional + } + }] + }, + { + code: 'dfp-video-div', + sizes: [ + [640, 480] + ], + mediaTypes: { + video: { + playerSize: [ + [640, 480] + ], + context: 'instream' + } + }, + bids: [{ + bidder: 'shinez', + params: { + org: '56f91cd4d3e3660002000033', // Required + floorPrice: 5.00, // Optional + placementId: '12345678', // Optional + testMode: false // Optional + } + }] } - }] -}; +]; ``` + +### Configuration +Shinez recommends setting UserSync by iframe for monetization.