Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
125 changes: 125 additions & 0 deletions dev-docs/bidders/glomexbidder.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
---
layout: bidder
title: Glomex Bidder
description: Prebid Glomex Bidder Adapter
pbjs: true
pbs: true
biddercode: glomexbidder
gvl_id: 967
tcfeu_supported: true
usp_supported: true
gpp_supported: true
schain_supported: true
dchain_supported: true
floors_supported: true
userIds: all
tcfeu_supported: true
media_types: banner, video, native
safeframes_ok: true
deals_supported: true
sidebarType: 1
fpd_supported: true
multiformat_supported: will-bid-on-any

---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------------|-------------------------------------- |-----------|
| `tagId` | optional | tag ID | `"testnexx"` | `string` |
| `placement` | optional | Placement | `"test"` | `string` |

For the prebid.js you only need to use one parameter: either tagId or placement

### First Party Data

Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html).
The following fields are supported:

* ortb2.site.ext.data.*
* ortb2.site.content.data[]
* ortb2.user.ext.data.*
* ortb2.user.data[]

### Test Parameters

```javascript
var adUnits = [
// Banner adUnit
{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'glomexbidder',
params: {
tagId: 'testeasy'
}
}]
},
// Video adUnit
{
code: 'video1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
}
},
bids: [{
bidder: 'glomexbidder',
params: {
tagId: 'testeasy'
}
}]
},
// Native adUnit
{
code: 'native1',
mediaTypes:
native: {
title: {
required: true
},
image: {
required: true
},
sponsoredBy: {
required: true
}
}
},
bids: [{
bidder: 'glomexbidder',
params: {
tagId: 'testeasy'
}
}]
},
// Multiformat Ad
{
code: 'multi1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
},
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'glomexbidder',
params: {
tagId: 'testeasy',
videoTagId: 'testeasy'
}
}]
};
];
```
125 changes: 125 additions & 0 deletions dev-docs/bidders/movingup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
---
layout: bidder
title: Moving Up
description: Prebid Moving Up Bidder Adapter
pbjs: true
pbs: true
biddercode: movingup
gvl_id: 1416
tcfeu_supported: true
usp_supported: true
gpp_supported: true
schain_supported: true
dchain_supported: true
floors_supported: true
userIds: all
tcfeu_supported: true
media_types: banner, video, native
safeframes_ok: true
deals_supported: true
sidebarType: 1
fpd_supported: true
multiformat_supported: will-bid-on-any

---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------------|-------------------------------------- |-----------|
| `tagId` | optional | tag ID | `"testnexx"` | `string` |
| `placement` | optional | Placement | `"test"` | `string` |

For the prebid.js you only need to use one parameter: either tagId or placement

### First Party Data

Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html).
The following fields are supported:

* ortb2.site.ext.data.*
* ortb2.site.content.data[]
* ortb2.user.ext.data.*
* ortb2.user.data[]

### Test Parameters

```javascript
var adUnits = [
// Banner adUnit
{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'movingup',
params: {
tagId: 'testeasy'
}
}]
},
// Video adUnit
{
code: 'video1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
}
},
bids: [{
bidder: 'movingup',
params: {
tagId: 'testeasy'
}
}]
},
// Native adUnit
{
code: 'native1',
mediaTypes:
native: {
title: {
required: true
},
image: {
required: true
},
sponsoredBy: {
required: true
}
}
},
bids: [{
bidder: 'movingup',
params: {
tagId: 'testeasy'
}
}]
},
// Multiformat Ad
{
code: 'multi1',
mediaTypes: {
video: {
playerSize: [640, 480],
context: 'instream'
},
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'movingup',
params: {
tagId: 'testeasy',
videoTagId: 'testeasy'
}
}]
};
];
```