Skip to content

Commit 0863a96

Browse files
authored
Merge branch 'master' into master
2 parents 0b534c8 + 0fbab18 commit 0863a96

File tree

4 files changed

+234
-25
lines changed

4 files changed

+234
-25
lines changed

dev-docs/bidders/easybid.md

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ pbjs: true
66
pbs: true
77
biddercode: easybid
88
gvl_id: 1068
9-
tcfeu_supported: true
109
usp_supported: true
11-
gpp_supported: true
10+
gpp_sids: tcfeu
1211
schain_supported: true
1312
dchain_supported: false
1413
floors_supported: true
@@ -29,6 +28,10 @@ multiformat_supported: will-bid-on-any
2928
| Name | Scope | Description | Example | Type |
3029
|---------------|----------|----------------------------|-------------------------------------- |-----------|
3130
| `tagId` | required | tag ID | `"testeasy"` | `string` |
31+
| `placement` | required*| Placement | `"test.com_header_ad"` | `string` |
32+
33+
*You*must* only include one ID field - either `tagId` or `placement`, not both. If you have questions on which parameter to use, please reach out to your Account Manager.
34+
The `tagId` and `placement` are **mutually exclusive** but at least one is required. If you pass both, `tagId` takes precedence.
3235

3336
### First Party Data
3437

@@ -97,26 +100,6 @@ var adUnits = [
97100
tagId: 'testeasy'
98101
}
99102
}]
100-
},
101-
// Multiformat Ad
102-
{
103-
code: 'multi1',
104-
mediaTypes: {
105-
video: {
106-
playerSize: [640, 480],
107-
context: 'instream'
108-
},
109-
banner: {
110-
sizes: [[300, 250], [300,600]]
111-
}
112-
},
113-
bids: [{
114-
bidder: 'easybid',
115-
params: {
116-
tagId: 'testeasy',
117-
videoTagId: 'testeasy'
118-
}
119-
}]
120-
};
103+
}
121104
];
122105
```

dev-docs/bidders/nexx360.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ pbjs: true
66
pbs: true
77
biddercode: nexx360
88
gvl_id: 965
9-
tcfeu_supported: true
109
usp_supported: true
11-
gpp_supported: true
10+
gpp_sids: tcfeu
1211
schain_supported: true
1312
dchain_supported: false
1413
floors_supported: true

dev-docs/bidders/pubxai.md

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
---
2+
layout: bidder
3+
title: PubxAi
4+
description: Prebid PubxAi Bidder Adapter
5+
pbjs: true
6+
pbs: true
7+
biddercode: pubxai
8+
gvl_id: 1485
9+
usp_supported: true
10+
gpp_sids: tcfeu
11+
schain_supported: true
12+
dchain_supported: false
13+
floors_supported: true
14+
userIds: all
15+
tcfeu_supported: true
16+
media_types: banner, video, native
17+
safeframes_ok: true
18+
deals_supported: true
19+
sidebarType: 1
20+
fpd_supported: true
21+
multiformat_supported: will-bid-on-any
22+
23+
---
24+
25+
### Bid Params
26+
27+
{: .table .table-bordered .table-striped }
28+
| Name | Scope | Description | Example | Type |
29+
|---------------|----------|----------------------------|-------------------------------------- |-----------|
30+
| `tagId` | required | PubxAi tag ID | `"testnexx"` | `string` |
31+
| `placement` | required*| PubxAi placement | `"test.com_header_ad"` | `string` |
32+
33+
*You*must* only include one ID field - either `tagId` or `placement`, not both. If you have questions on which parameter to use, please reach out to your Account Manager.
34+
The `tagId` and `placement` are **mutually exclusive** but at least one is required. If you pass both, `tagId` takes precedence.
35+
36+
### Bidder Config
37+
38+
You can allow writing in localStorage `pbjs.bidderSettings` for the bidder `pubxai`
39+
40+
{% include dev-docs/storageAllowed.md %}
41+
42+
```javascript
43+
pbjs.bidderSettings = {
44+
pubxai: {
45+
storageAllowed : true
46+
}
47+
}
48+
```
49+
50+
### First Party Data
51+
52+
Publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html).
53+
54+
### Test Parameters
55+
56+
```javascript
57+
var adUnits = [
58+
// Banner adUnit
59+
{
60+
code: 'banner-div',
61+
mediaTypes: {
62+
banner: {
63+
sizes: [[300, 250], [300,600]]
64+
}
65+
},
66+
bids: [{
67+
bidder: 'pubxai',
68+
params: {
69+
tagId: 'testnexx'
70+
}
71+
}]
72+
},
73+
// Video adUnit
74+
{
75+
code: 'video1',
76+
mediaTypes: {
77+
video: {
78+
playerSize: [640, 480],
79+
context: 'instream'
80+
}
81+
},
82+
bids: [{
83+
bidder: 'pubxai',
84+
params: {
85+
tagId: 'testnexx'
86+
}
87+
}]
88+
},
89+
// Native adUnit
90+
{
91+
code: 'native1',
92+
mediaTypes:
93+
native: {
94+
title: {
95+
required: true
96+
},
97+
image: {
98+
required: true
99+
},
100+
sponsoredBy: {
101+
required: true
102+
}
103+
}
104+
},
105+
bids: [{
106+
bidder: 'pubxai',
107+
params: {
108+
tagId: 'testnexx'
109+
}
110+
}]
111+
}
112+
];
113+
```

dev-docs/bidders/revnew.md

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
---
2+
layout: bidder
3+
title: Revnew
4+
description: Prebid Revnew Bidder Adapter
5+
pbjs: true
6+
pbs: true
7+
biddercode: revnew
8+
gvl_id: 1468
9+
tcfeu_supported: true
10+
usp_supported: true
11+
gpp_sids: tcfeu
12+
schain_supported: true
13+
dchain_supported: false
14+
floors_supported: true
15+
userIds: all
16+
tcfeu_supported: true
17+
media_types: banner, video, native
18+
safeframes_ok: true
19+
deals_supported: true
20+
sidebarType: 1
21+
fpd_supported: true
22+
multiformat_supported: will-bid-on-any
23+
24+
---
25+
26+
### Bid Params
27+
28+
{: .table .table-bordered .table-striped }
29+
| Name | Scope | Description | Example | Type |
30+
|---------------|----------|----------------------------|-------------------------------------- |-----------|
31+
| `tagId` | required*| Revnew tag ID | `"testnexx"` | `string` |
32+
| `placement` | required*| Revnew placement | `"test.com_header_ad"` | `string` |
33+
34+
*You*must* only include one ID field - either `tagId` or `placement`, not both. If you have questions on which parameter to use, please reach out to your Account Manager.
35+
The `tagId` and `placement` are **mutually exclusive** but at least one is required. If you pass both, `tagId` takes precedence.
36+
37+
### Bidder Config
38+
39+
You can allow writing in localStorage `pbjs.bidderSettings` for the bidder `revnew`
40+
41+
{% include dev-docs/storageAllowed.md %}
42+
43+
```javascript
44+
pbjs.bidderSettings = {
45+
revnew: {
46+
storageAllowed : true
47+
}
48+
}
49+
```
50+
51+
### First Party Data
52+
53+
Publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html).
54+
55+
### Test Parameters
56+
57+
```javascript
58+
var adUnits = [
59+
// Banner adUnit
60+
{
61+
code: 'banner-div',
62+
mediaTypes: {
63+
banner: {
64+
sizes: [[300, 250], [300,600]]
65+
}
66+
},
67+
bids: [{
68+
bidder: 'revnew',
69+
params: {
70+
tagId: 'testnexx'
71+
}
72+
}]
73+
},
74+
// Video adUnit
75+
{
76+
code: 'video1',
77+
mediaTypes: {
78+
video: {
79+
playerSize: [640, 480],
80+
context: 'instream'
81+
}
82+
},
83+
bids: [{
84+
bidder: 'revnew',
85+
params: {
86+
tagId: 'testnexx'
87+
}
88+
}]
89+
},
90+
// Native adUnit
91+
{
92+
code: 'native1',
93+
mediaTypes:
94+
native: {
95+
title: {
96+
required: true
97+
},
98+
image: {
99+
required: true
100+
},
101+
sponsoredBy: {
102+
required: true
103+
}
104+
}
105+
},
106+
bids: [{
107+
bidder: 'revnew',
108+
params: {
109+
tagId: 'testnexx'
110+
}
111+
}]
112+
}
113+
];
114+
```

0 commit comments

Comments
 (0)