From def4e4a1f1e860a51d736855822ba96f486de8d8 Mon Sep 17 00:00:00 2001 From: tccdeniz Date: Mon, 30 Jun 2025 11:25:13 +0300 Subject: [PATCH 1/3] Added and updated AdPlus docs --- dev-docs/analytics/adplus.md | 18 ++++++++ dev-docs/bidders/adplus.md | 3 +- dev-docs/modules/userid-submodules/adplus.md | 43 ++++++++++++++++++++ 3 files changed, 63 insertions(+), 1 deletion(-) create mode 100644 dev-docs/analytics/adplus.md create mode 100644 dev-docs/modules/userid-submodules/adplus.md diff --git a/dev-docs/analytics/adplus.md b/dev-docs/analytics/adplus.md new file mode 100644 index 0000000000..81ad367cc6 --- /dev/null +++ b/dev-docs/analytics/adplus.md @@ -0,0 +1,18 @@ +--- +layout: analytics +title: AdPlus +description: AdPlus Analytics Adapter +modulecode: appier +--- + +#### About + +Analytics adapter for AdPlus platform. Contact [adplusdestek@turkcell.com.tr]() if you have any questions about integration. + +#### Example Configuration + +```javascript +pbjs.enableAnalytics({ + provider: 'adplus', +}); +``` \ No newline at end of file diff --git a/dev-docs/bidders/adplus.md b/dev-docs/bidders/adplus.md index 58112efcb7..367c324b1b 100644 --- a/dev-docs/bidders/adplus.md +++ b/dev-docs/bidders/adplus.md @@ -4,13 +4,14 @@ title: AdPlus description: Prebid AdPlus Bidder Adapter biddercode: adplus media_types: banner +userIds: all pbjs: true sidebarType: 1 --- ### Note -The AdPlus Bidding adapter requires setup before beginning. Please contact us at . +The AdPlus Bidding adapter requires setup before beginning. Please contact us at . ### Bid Params diff --git a/dev-docs/modules/userid-submodules/adplus.md b/dev-docs/modules/userid-submodules/adplus.md new file mode 100644 index 0000000000..fefbb4611c --- /dev/null +++ b/dev-docs/modules/userid-submodules/adplus.md @@ -0,0 +1,43 @@ +--- +layout: userid +title: AdPlus ID +description: AdPlus ID User ID sub-module +useridmodule: adplusIdSystem +bidRequestUserId: adplusId +eidsource: ad-plus.com.tr +example: '"1111"' +--- + +## AdPlus ID Configuration + +Please make sure to add the AdPlus user ID sub-module to your Prebid.js package with: + +```shell +gulp build --modules=adplusIdSystem,userId +``` + +{: .table .table-bordered .table-striped } + +| Param under userSync.userIds[] | Scope | Type | Description | Example | +| --- | --- | --- | --- | --- | +| name | Required | String | The name of this module: `"adplusId"` | `"adplusId"` | +| storage.expires | Optional | Number | How long (in days) the user ID information will be stored | `7` (recommended) | +| storage.refreshInSeconds | Optional | Number | How many seconds until the ID is refreshed | `24 * 3600` (recommended) | + +## AdPlus ID Example + +```javascript +pbjs.setConfig({ + userSync: { + userIds: [{ + name: "adplusId", + storage: { + name: "adplusId", + type: "cookie&html5", + expires: 7, + refreshInSeconds: 24 * 3600 + } + }] + } +}); +``` From d3de9c596ca31e3c48f73ef0179b34d6a6a07d6b Mon Sep 17 00:00:00 2001 From: tccdeniz Date: Mon, 30 Jun 2025 13:27:45 +0300 Subject: [PATCH 2/3] Fixed linter issues --- dev-docs/analytics/adplus.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/analytics/adplus.md b/dev-docs/analytics/adplus.md index 81ad367cc6..4154d7973e 100644 --- a/dev-docs/analytics/adplus.md +++ b/dev-docs/analytics/adplus.md @@ -7,7 +7,7 @@ modulecode: appier #### About -Analytics adapter for AdPlus platform. Contact [adplusdestek@turkcell.com.tr]() if you have any questions about integration. +Analytics adapter for AdPlus platform. Contact [adplusdestek@turkcell.com.tr](adplusdestek@turkcell.com.tr) if you have any questions about integration. #### Example Configuration @@ -15,4 +15,4 @@ Analytics adapter for AdPlus platform. Contact [adplusdestek@turkcell.com.tr]() pbjs.enableAnalytics({ provider: 'adplus', }); -``` \ No newline at end of file +``` From 4f22c042bd1d25bc058aca55633314228744ec0c Mon Sep 17 00:00:00 2001 From: TCCDENIZ Date: Wed, 11 Mar 2026 08:13:10 +0300 Subject: [PATCH 3/3] Removed unnecessary adplus params --- dev-docs/modules/userid-submodules/adplus.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dev-docs/modules/userid-submodules/adplus.md b/dev-docs/modules/userid-submodules/adplus.md index fefbb4611c..1fadf949f1 100644 --- a/dev-docs/modules/userid-submodules/adplus.md +++ b/dev-docs/modules/userid-submodules/adplus.md @@ -21,8 +21,6 @@ gulp build --modules=adplusIdSystem,userId | Param under userSync.userIds[] | Scope | Type | Description | Example | | --- | --- | --- | --- | --- | | name | Required | String | The name of this module: `"adplusId"` | `"adplusId"` | -| storage.expires | Optional | Number | How long (in days) the user ID information will be stored | `7` (recommended) | -| storage.refreshInSeconds | Optional | Number | How many seconds until the ID is refreshed | `24 * 3600` (recommended) | ## AdPlus ID Example @@ -32,10 +30,7 @@ pbjs.setConfig({ userIds: [{ name: "adplusId", storage: { - name: "adplusId", - type: "cookie&html5", - expires: 7, - refreshInSeconds: 24 * 3600 + name: "adplusId" } }] }