Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion dev-docs/bidders/asterio.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Prebid Asterio Bidder Adapter
biddercode: asterio
pbjs: true
pbs: false
media_types: banner, video
media_types: banner, video, native
tcfeu_supported: false
dsa_supported: false
gvl_id: none
Expand Down Expand Up @@ -76,3 +76,22 @@ var adUnits = [{
}]
}];
```

## Native Test Ad Unit

Asterio uses `adUnitToken` to resolve the ad unit and format. For native ad units, include `mediaTypes.native` and render the returned native assets in the publisher layout. See the [Prebid Native Implementation Guide](/prebid/native-implementation.html) for rendering options.

```javascript
var adUnits = [{
code: 'test-native',
mediaTypes: {
native: {}
},
bids: [{
bidder: 'asterio',
params: {
adUnitToken: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
}
}]
}];
```
Loading