Skip to content

Commit

Permalink
Adnuntius bid adapter: Adding example of how to request native ad.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikael-lundin committed Dec 12, 2022
1 parent 1915344 commit 18121be
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion dev-docs/bidders/adnuntius.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Prebid Adnuntius Bidder Adaptor
pbjs: true
pbs: true
biddercode: adnuntius
media_types: banner, video
media_types: banner, video, native
gdpr_supported: true
fpd_supported: true
gvl_id: 855
Expand Down Expand Up @@ -166,3 +166,34 @@ Currently we only support client requests and instream context. An example reque
};
```

#### Example native

Here's an example of how to request a native ad from adnuntius:

```
{
code: 'native',
sizes: [
[320, 320]
],
mediaTypes: {
native: {
title: {
required: true
},
image: {
required: true
},
body: {
required: true
}
}
},
bids: [{
bidder: 'adnuntius',
params: {
auId: "0000000000abc123",
}
}]
}
```

0 comments on commit 18121be

Please sign in to comment.