Skip to content

Commit 08c3f95

Browse files
committed
APS Bid Adapter Initial Release
**Overview** ------------ APS (Amazon Publisher Services) bid adapter initial open source release. **Changes** ----------- - (docs) Integration guide
1 parent c7723b2 commit 08c3f95

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

dev-docs/aps.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
layout: bidder
3+
title: APS
4+
description: Prebid APS Bidder Adapter
5+
biddercode: aps
6+
tcfeu_supported: true
7+
dsa_supported: false
8+
gvl_id: 793
9+
usp_supported: true
10+
coppa_supported: true
11+
schain_supported: true
12+
media_types: display, video
13+
deals_supported: true
14+
floors_supported: true
15+
fpd_supported: true
16+
ortb_blocking_supported: true
17+
pbjs: true
18+
pbs: false
19+
prebid_member: true
20+
multiformat_supported: will-bid-on-any
21+
sidebarType: 1
22+
---
23+
24+
### Bidder Config Params
25+
26+
{: .table .table-bordered .table-striped }
27+
| Name | Scope | Description | Example | Type |
28+
|-----------------|----------|-----------------|---------------------------|----------|
29+
| `aps.accountID` | required | APS-provided ID | `1234` | `string` |
30+
| `aps.debugURL` | optional | Bid endpoint | `https://example.com/bid` | `string` |
31+
| `aps.debug` | optional | Toggle to enable / disable debug mode | `true` | `boolean` |
32+
| `aps.renderMethod` | optional | Debug mode render method | `fif` | `string` |
33+
| `aps.creativeURL` | optional | Creative rendering URL | `https://example.com/creative.js` | `string` |
34+
| `aps.telemetry` | optional | Toggle to enable / disable APS telemetry | `true` | `boolean` |
35+
36+
### Bid Params
37+
38+
None.
39+
40+
## User Syncs
41+
42+
If you'd like to activate user syncs through APS, you must activate iframe syncing.
43+
44+
```
45+
window.pbjs.que.push(function () {
46+
window.pbjs.setConfig({
47+
userSync: {
48+
filterSettings: {
49+
iframe: {
50+
bidders: ["aps"],
51+
filter: "include",
52+
},
53+
},
54+
},
55+
});
56+
});
57+
```

0 commit comments

Comments
 (0)