From fdb752372d038024d8cb31fb4a34d207080c3a79 Mon Sep 17 00:00:00 2001 From: Tjorven Beckedorf Date: Fri, 4 Jul 2025 13:28:10 +0200 Subject: [PATCH 1/3] T Advertising Bid Adapter: create bid adapter - Squashed commit of the following: commit ce5db1375cad408b8c0dccfba2e36e2772e8e233 Merge: dad87f59 f4c4a5ad Author: Tjorven Beckedorf Date: Fri Jul 4 13:27:11 2025 +0200 Merge remote-tracking branch 'github/master' into feature/OAD-1345-integrate-adapter-with-prebid.org commit dad87f59e15f12a531ca77a7c4287eaff4f127ba Author: Tjorven Beckedorf Date: Fri Jul 4 12:59:33 2025 +0200 OAD-1345: add documentation for video adunits support commit 0244516bfe361097413087e55899cde2454d0216 Author: Tjorven Beckedorf Date: Thu Jun 26 14:22:36 2025 +0200 OAD-1345: add first version of tadvertising bidder docs --- dev-docs/bidders/tadvertising.md | 104 +++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 dev-docs/bidders/tadvertising.md diff --git a/dev-docs/bidders/tadvertising.md b/dev-docs/bidders/tadvertising.md new file mode 100644 index 0000000000..d227bef6be --- /dev/null +++ b/dev-docs/bidders/tadvertising.md @@ -0,0 +1,104 @@ +--- +layout: bidder +title: T-Advertising Solutions +description: T-Advertising Solutions Prebid Bidder Adapter +biddercode: tadvertising +tcfeu_supported: true +gvl_id: 213 +usp_supported: false +coppa_supported: false +gpp_supported: false +schain_supported: true +dchain_supported: false +userIds: unifiedId +media_types: banner, video +floors_supported: true +pbjs: true +pbs: false +prebid_member: no +sidebarType: 1 +pbs_app_supported: false +deals_supported: false +multiformat_supported: will-not-bid +ortb_blocking_supported: true +gpp_sids: false +fpd_supported: false +--- + +### Disclosure +{: .alert.alert-danger :} +Note: The T-Advertising Solutions Bidding adapter requires setup and approval from the T-Advertising Solutions service team. Please reach out to your account manager for more information to start using it. + +### Bid Params + +{: .table .table-bordered .table-striped } +Name | Scope | Description | Example | Type +--- | --- | --- | --- | ---- +`publisherId` | required | The publisher ID | `'1427ab10f2e448057ed3b422'` | `String` +`placementId` | required | the GPID value should be passed in this field. | `'5e9f2c8b7d31a45620fa8d3c'` | `String` +`bidfloor` | optional | Sets a bid floor price | `0.95` | `Float` + +### Banner Ad Unit Example + +The T-Advertising Solutions adapter for banner uses certain parameters in the AdUnit's +[mediaTypes.banner](https://docs.prebid.org/dev-docs/adunit-reference.html#adUnit.mediaTypes.banner) definition. + +Here's a banner ad unit example: + +```javascript +var bannerAdUnit = { + code: 'myBannerAdUnit', + mediaTypes: { + banner: { + sizes: [400, 600], + } + }, + bids: [ + { + bidder: 'tadvertising', + params: { + publisherId: '1427ab10f2e448057ed3b422', + placementId: 'sidebar_1', + bidfloor: 0.95 // Optional - default is 0 + } + } + ] +} +``` + +### Video Ad Unit Example + +The T-Advertising Solutions adapter for video requires certain parameters in the AdUnit's +[mediaTypes.video](https://docs.prebid.org/dev-docs/adunit-reference.html#adUnit.mediaTypes.video) definition. + +Here's a video ad unit example: + +```javascript +var videoAdUnit = { + code: 'myVideoAdUnit', + mediaTypes: { + video: { + mimes: ['video/mp4'], + minduration: 1, + maxduration: 60, + api: [1, 3], + placement: 3, + protocols: [2,3,5,6] + } + }, + bids: [ + { + bidder: "tadvertising", + params: { + publisherId: '1427ab10f2e448057ed3b422', + placementId: 'sidebar_1', + bidfloor: 0.95 // Optional - default is 0 + } + } + ] +} +``` + +### First Party Data + +Publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). From 0fbad80da1176abb090c76775dd836fe4ef190bf Mon Sep 17 00:00:00 2001 From: Tjorven Beckedorf Date: Mon, 14 Jul 2025 10:05:58 +0200 Subject: [PATCH 2/3] T Advertising Bid Adapter: add feedback to the documentation - Squashed commit of the following: commit 0741c2b7883f93c5c34e84bafe4f9a6236c4151d Author: Tjorven Beckedorf Date: Mon Jul 14 09:29:39 2025 +0200 OAD-1345: add feedback from github pull request in the documentation --- dev-docs/bidders/tadvertising.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/tadvertising.md b/dev-docs/bidders/tadvertising.md index d227bef6be..f7e50af73b 100644 --- a/dev-docs/bidders/tadvertising.md +++ b/dev-docs/bidders/tadvertising.md @@ -26,12 +26,14 @@ fpd_supported: false --- ### Disclosure + {: .alert.alert-danger :} Note: The T-Advertising Solutions Bidding adapter requires setup and approval from the T-Advertising Solutions service team. Please reach out to your account manager for more information to start using it. ### Bid Params {: .table .table-bordered .table-striped } + Name | Scope | Description | Example | Type --- | --- | --- | --- | ---- `publisherId` | required | The publisher ID | `'1427ab10f2e448057ed3b422'` | `String` @@ -69,7 +71,7 @@ var bannerAdUnit = { ### Video Ad Unit Example The T-Advertising Solutions adapter for video requires certain parameters in the AdUnit's -[mediaTypes.video](https://docs.prebid.org/dev-docs/adunit-reference.html#adUnit.mediaTypes.video) definition. +[mediaTypes.video](/dev-docs/adunit-reference.html#adUnit.mediaTypes.video) definition. Here's a video ad unit example: @@ -100,5 +102,4 @@ var videoAdUnit = { ``` ### First Party Data - -Publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). +Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html). From 24d5a1937c13b203b9b08448a7a594ed31b6d34e Mon Sep 17 00:00:00 2001 From: Tjorven Date: Thu, 24 Jul 2025 16:45:36 +0200 Subject: [PATCH 3/3] T Advertising Bid Adapter: add feedback to the documentation Co-authored-by: Muki Seiler --- dev-docs/bidders/tadvertising.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/tadvertising.md b/dev-docs/bidders/tadvertising.md index f7e50af73b..6fa8098985 100644 --- a/dev-docs/bidders/tadvertising.md +++ b/dev-docs/bidders/tadvertising.md @@ -102,4 +102,5 @@ var videoAdUnit = { ``` ### First Party Data + Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html).