File tree Expand file tree Collapse file tree 3 files changed +63
-1
lines changed
modules/userid-submodules Expand file tree Collapse file tree 3 files changed +63
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ layout : analytics
3+ title : AdPlus
4+ description : AdPlus Analytics Adapter
5+ modulecode : appier
6+ ---
7+
8+ #### About
9+
10+ Analytics adapter for AdPlus platform. Contact [ adplusdestek@turkcell.com.tr ] ( adplusdestek@turkcell.com.tr ) if you have any questions about integration.
11+
12+ #### Example Configuration
13+
14+ ``` javascript
15+ pbjs .enableAnalytics ({
16+ provider: ' adplus' ,
17+ });
18+ ```
Original file line number Diff line number Diff line change @@ -4,13 +4,14 @@ title: AdPlus
44description : Prebid AdPlus Bidder Adapter
55biddercode : adplus
66media_types : banner
7+ userIds : all
78pbjs : true
89sidebarType : 1
910---
1011
1112### Note
1213
13- The AdPlus Bidding adapter requires setup before beginning. Please contact us at < adplusdestek @turkcell.com.tr> .
14+ The AdPlus Bidding adapter requires setup before beginning. Please contact us at < dijitalreklam @turkcell.com.tr> .
1415
1516### Bid Params
1617
Original file line number Diff line number Diff line change 1+ ---
2+ layout : userid
3+ title : AdPlus ID
4+ description : AdPlus ID User ID sub-module
5+ useridmodule : adplusIdSystem
6+ bidRequestUserId : adplusId
7+ eidsource : ad-plus.com.tr
8+ example : ' "1111"'
9+ ---
10+
11+ ## AdPlus ID Configuration
12+
13+ Please make sure to add the AdPlus user ID sub-module to your Prebid.js package with:
14+
15+ ``` shell
16+ gulp build --modules=adplusIdSystem,userId
17+ ```
18+
19+ {: .table .table-bordered .table-striped }
20+
21+ | Param under userSync.userIds[ ] | Scope | Type | Description | Example |
22+ | --- | --- | --- | --- | --- |
23+ | name | Required | String | The name of this module: ` "adplusId" ` | ` "adplusId" ` |
24+ | storage.expires | Optional | Number | How long (in days) the user ID information will be stored | ` 7 ` (recommended) |
25+ | storage.refreshInSeconds | Optional | Number | How many seconds until the ID is refreshed | ` 24 * 3600 ` (recommended) |
26+
27+ ## AdPlus ID Example
28+
29+ ``` javascript
30+ pbjs .setConfig ({
31+ userSync: {
32+ userIds: [{
33+ name: " adplusId" ,
34+ storage: {
35+ name: " adplusId" ,
36+ type: " cookie&html5" ,
37+ expires: 7 ,
38+ refreshInSeconds: 24 * 3600
39+ }
40+ }]
41+ }
42+ });
43+ ```
You can’t perform that action at this time.
0 commit comments