Skip to content

Commit

Permalink
Merge branch 'master' into add-rediads-bid-adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
rediads authored Dec 12, 2024
2 parents df43ab5 + c30e0ca commit 2430c77
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 3 deletions.
91 changes: 91 additions & 0 deletions dev-docs/bidders/adt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
---
layout: bidder
title: AdTarget Teknoloji
description: Prebid AdTarget Teknoloji Bidder Adapter.
pbjs: true
pbs: true
biddercode: adt
media_types: banner,video,native
gvl_id: 779
tcfeu_supported: true
usp_supported: true
coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
safeframes_ok: true
floors_supported: true
aliasCode: admatic
multiformat_supported: will-bid-on-any
sidebarType: 1
---

### Description

AdTarget Teknoloji header bidding adapter connects with AdTarget Teknoloji demand sources to fetch bids for network ID. Please reach out to your account manager or <[email protected]> for more information.

### Bid params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------------|----------|-------------------------------------|----------|----------|
| `networkId` | required | The network ID from AdTarget Teknoloji | `12345` | `number` |
| `host` | required | RTB Host | `adt.rtb.adtarget.biz` | `string` |

### Test Parameters

300x250 banner test

```javascript
var adUnits = [{
code: 'your-slot_1-div',
mediaTypes: {
banner: { sizes: [[300, 250]] },
},
bids: [{
bidder: 'adt',
params: {
networkId: 12345,
host: 'adt.rtb.adtarget.biz'
}
}]
},{
code: 'your-slot_2-div',
mediaTypes: {
native: { ... },
},
bids: [{
bidder: 'adt',
params: {
networkId: 12345,
host: 'adt.rtb.adtarget.biz'
}
}]
},{
code: 'your-slot_3-div',
mediaTypes: {
video: { ... },
},
bids: [{
bidder: 'adt',
params: {
networkId: 12345,
host: 'adt.rtb.adtarget.biz'
}
}]
}];
```

### UserSync example

```javascript
pbjs.setConfig({
userSync: {
iframeEnabled: true,
syncEnabled: true,
syncDelay: 1,
aliasSyncEnabled: true
}
});
```
6 changes: 3 additions & 3 deletions dev-docs/modules/51DegreesRtdProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The Cloud API is **free** to integrate and use. To increase limits please check

The module supports on premise and cloud device detection services with free options for both.

A free resource key for use with 51Degrees cloud service can be obtained from [51Degrees cloud configuration](https://configure.51degrees.com/HNZ75HT1). This is the simplest approach to trial the module.
A free resource key for use with 51Degrees cloud service can be obtained from [51Degrees cloud configuration](https://configure.51degrees.com/HNZ75HT1?utm_source=Prebid&utm_medium=Documentation). This is the simplest approach to trial the module.

An interface compatible self hosted service can be used with .NET, Java, Node, PHP, and Python. See [51Degrees examples](https://51degrees.com/documentation/_examples__device_detection__getting_started__web__on_premise.html).

Expand All @@ -54,7 +54,7 @@ gulp build --modules="rtdModule,51DegreesRtdProvider,appnexusBidAdapter,..."

#### Resource Key

In order to use the module please first obtain a Resource Key using the [Configurator tool](https://configure.51degrees.com/HNZ75HT1) - choose the following properties:
In order to use the module please first obtain a Resource Key using the [Configurator tool](https://configure.51degrees.com/HNZ75HT1?utm_source=Prebid&utm_medium=Documentation) - choose the following properties:

* DeviceId
* DeviceType
Expand Down Expand Up @@ -124,7 +124,7 @@ pbjs.setConfig({
waitForIt: true, // should be true, otherwise the auctionDelay will be ignored
params: {
resourceKey: '<YOUR_RESOURCE_KEY>',
// Get your resource key from https://configure.51degrees.com/HNZ75HT1
// Get your resource key from https://configure.51degrees.com/HNZ75HT1?utm_source=Prebid&utm_medium=Documentation
// alternatively, you can use the on-premise version of the 51Degrees service and connect to your chosen end point
// onPremiseJSUrl: 'https://localhost/51Degrees.core.js'
},
Expand Down

0 comments on commit 2430c77

Please sign in to comment.