Skip to content

Commit

Permalink
te medya new adaptor (#2611)
Browse files Browse the repository at this point in the history
* te medya new adaptor

prebid/Prebid.js#6168

* removing table of contents

this doc is short enough it doesn't need a TOC and it winds up as part of the (huge) file of 350+ bidders, few of which have or need a sub-TOC within that section.

Co-authored-by: bretg <bgorsline@gmail.com>
  • Loading branch information
vidyome and bretg authored Jan 13, 2021
1 parent e1917b4 commit 9a23d71
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions dev-docs/bidders/temedya.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
layout: bidder
title: TE Medya
description: Prebid TE Medya Bidder Adapter.
pbjs: true
biddercode: temedya
media_types: banner,native
---

### Description

One of the easiest way to gain access to TE Medya demand sources - TE Medya header bidding adapter.

TE Medya header bidding adapter connects with TE Medya demand sources to fetch bids for display placements. Please reach out to your account manager or <prebid@temedya.com> for more information.

### Bid params

| Name | Scope | Description | Example | Type |
|--------------|----------|------------------------------------|------------|----------|
| `widgetId` | required | The widget ID from Vidyome | `753497` | `number` |
| `count`| optional | Ad Count | `1` | `number` |

### Test Parameters

300x250 banner test
```
var adUnits = [{
code: 'div-prebid',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
// Replace this object to test a new Adapter!
bids: [{
bidder: 'temedya',
params : {
widgetId : 753497 //test widgetId, please replace after test
}
}]
}];
```

native test
```
var adUnits = [{
code: 'div-prebid',
mediaTypes: {
native: {
image: {
required: true,
sizes: [320, 240]
},
clickUrl: {
required: false
},
title: {
required: true,
len: 80
},
sponsored: {
required: false
}
}
},
// Replace this object to test a new Adapter!
bids: [{
bidder: 'temedya',
params : {
widgetId : 753497 //test widgetId, please replace after test
}
}]
}];
```

0 comments on commit 9a23d71

Please sign in to comment.