Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appier: Add appier bid adapter aliases #2072

Merged
merged 3 commits into from
Jun 25, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev-docs/bidders/appier.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: bidder
title: Appier
description: Prebid Appier Bidder Adaptor
description: Prebid Appier Bidder Adapter
biddercode: appier
hide: true
media_types: banner
Expand Down
45 changes: 45 additions & 0 deletions dev-docs/bidders/appierBR.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: bidder
title: AppierBR
description: Prebid Appier Bidder Adapter
biddercode: appierBR
aliasCode: appier
hide: true
media_types: banner
gdpr_supported: true
---

#### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-----------|----------|---------------------------|------------|----------|
| `hzid` | required | The zone ID from Appier. | `"WhM5WIOp"` | `string` |

#### Custom Settings (Optional)

Set the "farm" to use region-specific server

```
pbjs.que.push(function() {
// use the bid server in Taiwan (country code: tw)
pbjs.setConfig({
appier: {
'farm': 'tw'
}
});
});
```

Explicitly override the bid server used for bidding

```
pbjs.que.push(function() {
pbjs.setConfig({
appier: {
'server': '${HOST_NAME_OF_THE_SERVER}'
}
});
});
```
AppierBR is an aliased bidder for Appier
45 changes: 45 additions & 0 deletions dev-docs/bidders/appierExt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: bidder
title: AppierExt
description: Prebid Appier Bidder Adapter
biddercode: appierExt
aliasCode: appier
hide: true
media_types: banner
gdpr_supported: true
---

#### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-----------|----------|---------------------------|------------|----------|
| `hzid` | required | The zone ID from Appier. | `"WhM5WIOp"` | `string` |

#### Custom Settings (Optional)

Set the "farm" to use region-specific server

```
pbjs.que.push(function() {
// use the bid server in Taiwan (country code: tw)
pbjs.setConfig({
appier: {
'farm': 'tw'
}
});
});
```

Explicitly override the bid server used for bidding

```
pbjs.que.push(function() {
pbjs.setConfig({
appier: {
'server': '${HOST_NAME_OF_THE_SERVER}'
}
});
});
```
AppierExt is an aliased bidder for Appier
45 changes: 45 additions & 0 deletions dev-docs/bidders/appierGM.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: bidder
title: AppierGM
description: Prebid Appier Bidder Adapter
biddercode: appierGM
aliasCode: appier
hide: true
media_types: banner
gdpr_supported: true
---

#### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-----------|----------|---------------------------|------------|----------|
| `hzid` | required | The zone ID from Appier. | `"WhM5WIOp"` | `string` |

#### Custom Settings (Optional)

Set the "farm" to use region-specific server

```
pbjs.que.push(function() {
// use the bid server in Taiwan (country code: tw)
pbjs.setConfig({
appier: {
'farm': 'tw'
}
});
});
```

Explicitly override the bid server used for bidding

```
pbjs.que.push(function() {
pbjs.setConfig({
appier: {
'server': '${HOST_NAME_OF_THE_SERVER}'
}
});
});
```
AppierGM is an aliased bidder for Appier