forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
}] | ||
}]; | ||
``` |