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
48 changes: 41 additions & 7 deletions dev-docs/bidders/ogury.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ coppa_supported: false
schain_supported: false
floors_supported: true
dchain_supported: false
media_types: banner
media_types: banner, video

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

multiformat_supported: will-bid-on-any, will-bid-on-one, will-not-bid

Can you add what happens on multi bid?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, updated.

multiformat_supported: will-bid-on-one
safeframes_ok: false
deals_supported: false
pbjs: true
Expand All @@ -20,7 +21,7 @@ prebid_member: false
sidebarType: 1
gpp_sids: tcfeu, usnat, usstate_all
---
### Registration
## Registration

Before Ogury's adapter integration, you have to register an account in the Ogury Platform. Please contact <supply-development@ogury.co> if you're interested in a partnership.
If you already have an account you'll need to register your websites (= assets) and the placements (= ad units) within the Platform. Alternatively reach out to your POC within Ogury to assist you with the placement creation.
Expand All @@ -34,10 +35,10 @@ This is the minimal list of params for integrating with Ogury:

{: .table .table-bordered .table-striped }

| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------|-----------|-----------|
| `assetKey` | required | The asset key provided by Ogury | `'OGY-CA41D116484F'` | `string` |
| `adUnitId` | required | Your ad unit id configured with Ogury | `'2c4d61d0-90aa-0139-0cda-0242ac120004'` | `string` |
| Name | Scope | Description | Example | Type |
|------------|----------|---------------------------------------|------------------------------------------|----------|
| `assetKey` | required | The asset key provided by Ogury | `'OGY-CA41D116484F'` | `string` |
| `adUnitId` | required | Your ad unit id configured with Ogury | `'2c4d61d0-90aa-0139-0cda-0242ac120004'` | `string` |

NOTE: You don't need these params to integrate with Ogury, see [inventory mapping](#inventory-mapping)

Expand Down Expand Up @@ -80,6 +81,39 @@ Use this example configuration for enabling Ogury ad server integration on a spe

```

For video ad units, configure the `video` media type as shown below:

```javascript
var videoAdUnits = [
{
code: 'video-ad-unit-code',
mediaTypes: {
video: {
context: 'instream',
playerSize: [[640, 480]],
mimes: ['video/mp4', 'video/webm'],
protocols: [2, 3, 5, 6],
playbackmethod: [1, 2],
maxduration: 30
}
},
bids: [
{
bidder: 'ogury',
params: {
assetKey: 'YOUR_OGURY_ASSET_KEY',
adUnitId: 'YOUR_OGURY_VIDEO_AD_UNIT_ID'
}
}
]
}
];

pbjs.que.push(function () {
pbjs.addAdUnits(videoAdUnits);
});
```

#### Inventory mapping

_Note: If you choose inventory mapping, you can skip specifying assetKey and adUnitId per ad unit._
Expand Down Expand Up @@ -132,7 +166,7 @@ pbjs.que.push(function () {

### Optional bid Params

Depending on your advertising format needs, other optional parameters can be used. Supported parameters are detailed [here](https://ogury-ltd.gitbook.io/mobile-web/header-bidding/ogury-prebid.js-adapter-integration#optional-configuration).
Depending on your advertising format needs, other optional parameters can be used. See the [optional configuration documentation](https://ogury-ltd.gitbook.io/mobile-web/header-bidding/ogury-prebid.js-adapter-integration#optional-configuration) for supported parameters.

### Contact information

Expand Down
Loading