Skip to content

Commit

Permalink
Adrino: new native adapter (#3550)
Browse files Browse the repository at this point in the history
Co-authored-by: Tomasz Mielcarz <tomasz.mielcarz@adrino.pl>
  • Loading branch information
tmielcarz and Tomasz Mielcarz authored Mar 10, 2022
1 parent a35fdfa commit ee71982
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions dev-docs/bidders/adrino.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
layout: bidder
title: Adrino
description: Prebid Adrino Bidder Adapter
pbjs: true
pbs: false
biddercode: adrino
media_types: no-display, native
gdpr_supported: true
gvl_id: 1072
---

### Note

The Adrino bidder adapter requires setup and approval from the Adrino team. Please reach out to [wydawcy@adrino.pl](mailto:wydawcy@adrino.pl) for more information.

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|--------|----------|--------------------------------------|------------------|----------|
| `hash` | required | Identifier for specific ad placement | `'abcdef123456'` | `string` |

### Native example

```
var adUnits = [
code: '/12345678/prebid_native_example_1',
mediaTypes: {
native: {
image: {
required: true,
sizes: [[300, 210],[300,150],[140,100]]
},
title: {
required: true
},
sponsoredBy: {
required: false
},
body: {
required: false
},
icon: {
required: false
}
}
},
bids: [{
bidder: 'adrino',
params: {
hash: 'abcdef123456'
}
}]
];
```

0 comments on commit ee71982

Please sign in to comment.