Skip to content

Commit

Permalink
Appier: Add appier bid adapter aliases (#2072)
Browse files Browse the repository at this point in the history
* feat: add appier adapter aliases

* fix: typo

* fix: remove unused hyperlink
  • Loading branch information
justinkuo-appier committed Jun 25, 2020
1 parent 714ce3f commit e204268
Show file tree
Hide file tree
Showing 4 changed files with 136 additions and 1 deletion.
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

0 comments on commit e204268

Please sign in to comment.