Skip to content

Commit

Permalink
Updated bidder: Adnuntius (#3312)
Browse files Browse the repository at this point in the history
* Adnuntius Bidder documentation added

* Fixed targeting text.

* Added documentation for passing segments in the bidder config.

* changed the way to send user segments to bidder.

* Moved string to type + examples.

* Adnuntius update for prebid server.
  • Loading branch information
mikael-lundin authored Oct 6, 2021
1 parent 1f14efc commit 325c9f2
Showing 1 changed file with 40 additions and 17 deletions.
57 changes: 40 additions & 17 deletions dev-docs/bidders/adnuntius.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ layout: bidder
title: Adnuntius
description: Prebid Adnuntius Bidder Adaptor
pbjs: true
pbs: true
biddercode: adnuntius
media_types: banner
gdpr_supported: true
fpd_supported: true
gvl_id: 855
---

### Bid Params
Expand Down Expand Up @@ -54,23 +56,44 @@ Here's an example of sending targeting information about categories to adnuntius
There's an option to send segment id in the bidder config that will be picked up and sent to the ad server. Below is an example on how to do this:

```
pbjs.setBidderConfig({
bidders: ['adnuntius', 'bidderB'],
config: {
ortb2: {
user: {
data: [{
name: "adnuntius",
segment: [
{ id: "1" },
{ id: "2" }
]
}]
}
}
}
});
```

### Prebid Server Test Request

pbjs.setBidderConfig({
bidders: ['adnuntius', 'bidderB'],
config: {
ortb2: {
user: {
data: [{
name: "adnuntius",
segment: [
{ id: "1" },
{ id: "2" }
]
}]
}
}
}
});
The following test parameters can be used to verify that Prebid Server is working properly with the server-side Adnuntius adapter. the `auId` below will not return a creative. Please substitute it with your own.

´´´
```
"imp": [{
"id": "impression-id",
"banner": {
"format": [{
"w": 980,
"h": 240
}, {
"w": 980,
"h": 360
}]
},
"ext": {
"adnuntius": {
"auId": "abc123"
}
}
}]
```

0 comments on commit 325c9f2

Please sign in to comment.