From 2ab24e8013d48d372d8f3c5a05fcc59b1af2a95d Mon Sep 17 00:00:00 2001 From: Tomasz Mielcarz Date: Fri, 4 Feb 2022 00:20:16 +0100 Subject: [PATCH] Adrino: new native adapter --- dev-docs/bidders/adrino.md | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 dev-docs/bidders/adrino.md diff --git a/dev-docs/bidders/adrino.md b/dev-docs/bidders/adrino.md new file mode 100644 index 0000000000..864b2507c9 --- /dev/null +++ b/dev-docs/bidders/adrino.md @@ -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' + } + }] +]; +```