From d11cba569e5ef39c24efc71c7d9ec8cedd100693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Dlouh=C3=BD?= Date: Wed, 7 Oct 2020 08:32:13 +0200 Subject: [PATCH 1/3] Add stroeerCore bidder documenation (#1) --- dev-docs/bidders/stroeerCore.md | 41 +++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 dev-docs/bidders/stroeerCore.md diff --git a/dev-docs/bidders/stroeerCore.md b/dev-docs/bidders/stroeerCore.md new file mode 100644 index 0000000000..7c20a02c34 --- /dev/null +++ b/dev-docs/bidders/stroeerCore.md @@ -0,0 +1,41 @@ +--- +layout: bidder +title: StroeerCore +description: Stroeer Bidder Adapter +biddercode: stroeerCore +media_types: banner +gdpr_supported: false +schain_supported: false +coppa_supported: false +usp_supported: false +tcf2_supported: true +safeframes_ok: true +prebid_member: false +pbjs: true +pbs: false +gvl_id: 136 +bidder_supports_deals: true +--- + +## Ad unit configuration for publishers + +```javascript +const adUnits = [{ + code: 'div-gpt-ad-1460505748561-0', + mediaTypes: { + banner: { + sizes: [[300, 250]], + } + }, + bids: [{ + bidder: 'stroeerCore', + params: { + sid: "06b782cc-091b-4f53-9cd2-0291679aa1ac" + } + }] +}]; +``` +### Config Notes + +* Slot id (`sid`) is required. The adapter will ignore bid requests from prebid if `sid` is not provided. This must be in the decoded form. For example, "1234" as opposed to "MTM0ODA=". +* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123). From 016cd07c14c86df0f13b8f3bb9b5dde9214cf954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Dlouh=C3=BD?= Date: Fri, 9 Oct 2020 08:19:37 +0200 Subject: [PATCH 2/3] Add bid params table --- dev-docs/bidders/stroeerCore.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-docs/bidders/stroeerCore.md b/dev-docs/bidders/stroeerCore.md index 7c20a02c34..3813db3b00 100644 --- a/dev-docs/bidders/stroeerCore.md +++ b/dev-docs/bidders/stroeerCore.md @@ -35,6 +35,13 @@ const adUnits = [{ }] }]; ``` +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|--------------------|------------------------------|----------| +| `sid` | required | Slot ID | `'06b782cc-091b-4f53-9cd2-0291679aa1ac'`| `string` | + ### Config Notes * Slot id (`sid`) is required. The adapter will ignore bid requests from prebid if `sid` is not provided. This must be in the decoded form. For example, "1234" as opposed to "MTM0ODA=". From 0b151853daa5d7eeca894d41d33a4692b6dd31ff Mon Sep 17 00:00:00 2001 From: bretg Date: Fri, 9 Oct 2020 10:56:07 -0400 Subject: [PATCH 3/3] re-ordered sections also demoted the ad unit config to level 3 instead of level 2 --- dev-docs/bidders/stroeerCore.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/dev-docs/bidders/stroeerCore.md b/dev-docs/bidders/stroeerCore.md index 3813db3b00..affaac4de6 100644 --- a/dev-docs/bidders/stroeerCore.md +++ b/dev-docs/bidders/stroeerCore.md @@ -17,7 +17,19 @@ gvl_id: 136 bidder_supports_deals: true --- -## Ad unit configuration for publishers +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|--------------------|------------------------------|----------| +| `sid` | required | Slot ID | `'06b782cc-091b-4f53-9cd2-0291679aa1ac'`| `string` | + +### Config Notes + +* Slot id (`sid`) is required. The adapter will ignore bid requests from prebid if `sid` is not provided. This must be in the decoded form. For example, "1234" as opposed to "MTM0ODA=". +* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123). + +### Ad unit configuration for publishers ```javascript const adUnits = [{ @@ -35,14 +47,3 @@ const adUnits = [{ }] }]; ``` -### Bid Params - -{: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|--------------------|------------------------------|----------| -| `sid` | required | Slot ID | `'06b782cc-091b-4f53-9cd2-0291679aa1ac'`| `string` | - -### Config Notes - -* Slot id (`sid`) is required. The adapter will ignore bid requests from prebid if `sid` is not provided. This must be in the decoded form. For example, "1234" as opposed to "MTM0ODA=". -* The server ignores dimensions that are not supported by the slot or by the platform (such as 987x123).