-
Notifications
You must be signed in to change notification settings - Fork 1.4k
T Advertising Solutions Bid Adapter: initial release #6134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fdb7523
T Advertising Bid Adapter: create bid adapter
tb-emq 0fbad80
T Advertising Bid Adapter: add feedback to the documentation
tb-emq 4865b67
Merge remote-tracking branch 'github/master'
tb-emq 4f3f52e
Merge branch 'master' into master
tb-emq 24d5a19
T Advertising Bid Adapter: add feedback to the documentation
tb-emq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,106 @@ | ||
| --- | ||
| layout: bidder | ||
| title: T-Advertising Solutions | ||
| description: T-Advertising Solutions Prebid Bidder Adapter | ||
| biddercode: tadvertising | ||
| tcfeu_supported: true | ||
| gvl_id: 213 | ||
| usp_supported: false | ||
| coppa_supported: false | ||
| gpp_supported: false | ||
| schain_supported: true | ||
| dchain_supported: false | ||
| userIds: unifiedId | ||
| media_types: banner, video | ||
| floors_supported: true | ||
| pbjs: true | ||
| pbs: false | ||
| prebid_member: no | ||
| sidebarType: 1 | ||
| pbs_app_supported: false | ||
| deals_supported: false | ||
| multiformat_supported: will-not-bid | ||
| ortb_blocking_supported: true | ||
| gpp_sids: false | ||
| fpd_supported: false | ||
| --- | ||
|
|
||
| ### Disclosure | ||
|
|
||
| {: .alert.alert-danger :} | ||
| Note: The T-Advertising Solutions Bidding adapter requires setup and approval from the T-Advertising Solutions service team. Please reach out to your account manager for more information to start using it. | ||
|
|
||
| ### Bid Params | ||
|
|
||
| {: .table .table-bordered .table-striped } | ||
|
tb-emq marked this conversation as resolved.
|
||
|
|
||
| Name | Scope | Description | Example | Type | ||
| --- | --- | --- | --- | ---- | ||
| `publisherId` | required | The publisher ID | `'1427ab10f2e448057ed3b422'` | `String` | ||
| `placementId` | required | the GPID value should be passed in this field. | `'5e9f2c8b7d31a45620fa8d3c'` | `String` | ||
| `bidfloor` | optional | Sets a bid floor price | `0.95` | `Float` | ||
|
|
||
| ### Banner Ad Unit Example | ||
|
|
||
| The T-Advertising Solutions adapter for banner uses certain parameters in the AdUnit's | ||
| [mediaTypes.banner](https://docs.prebid.org/dev-docs/adunit-reference.html#adUnit.mediaTypes.banner) definition. | ||
|
|
||
| Here's a banner ad unit example: | ||
|
|
||
| ```javascript | ||
| var bannerAdUnit = { | ||
| code: 'myBannerAdUnit', | ||
| mediaTypes: { | ||
| banner: { | ||
| sizes: [400, 600], | ||
| } | ||
| }, | ||
| bids: [ | ||
| { | ||
| bidder: 'tadvertising', | ||
| params: { | ||
| publisherId: '1427ab10f2e448057ed3b422', | ||
| placementId: 'sidebar_1', | ||
| bidfloor: 0.95 // Optional - default is 0 | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| ``` | ||
|
|
||
| ### Video Ad Unit Example | ||
|
|
||
| The T-Advertising Solutions adapter for video requires certain parameters in the AdUnit's | ||
| [mediaTypes.video](/dev-docs/adunit-reference.html#adUnit.mediaTypes.video) definition. | ||
|
|
||
| Here's a video ad unit example: | ||
|
|
||
| ```javascript | ||
| var videoAdUnit = { | ||
| code: 'myVideoAdUnit', | ||
| mediaTypes: { | ||
| video: { | ||
| mimes: ['video/mp4'], | ||
| minduration: 1, | ||
| maxduration: 60, | ||
| api: [1, 3], | ||
| placement: 3, | ||
| protocols: [2,3,5,6] | ||
| } | ||
| }, | ||
| bids: [ | ||
| { | ||
| bidder: "tadvertising", | ||
| params: { | ||
| publisherId: '1427ab10f2e448057ed3b422', | ||
| placementId: 'sidebar_1', | ||
| bidfloor: 0.95 // Optional - default is 0 | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| ``` | ||
|
|
||
| ### First Party Data | ||
|
tb-emq marked this conversation as resolved.
|
||
|
|
||
| Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html). | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.