Skip to content

Commit a1829fa

Browse files
authored
Added and updated AdPlus docs (#6114)
* Added and updated AdPlus docs * Fixed linter issues
1 parent d87b219 commit a1829fa

File tree

3 files changed

+63
-1
lines changed

3 files changed

+63
-1
lines changed

dev-docs/analytics/adplus.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
```

dev-docs/bidders/adplus.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ title: AdPlus
44
description: Prebid AdPlus Bidder Adapter
55
biddercode: adplus
66
media_types: banner
7+
userIds: all
78
pbjs: true
89
sidebarType: 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

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
```

0 commit comments

Comments
 (0)