-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
5 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 |
---|---|---|
@@ -1,11 +1,39 @@ | ||
--- | ||
--- | ||
layout: analytics | ||
title: Yukta Media | ||
description: Yukta Media Analytics Adapter | ||
title: YuktaMedia | ||
description: YuktaMedia Analytics Adapter | ||
modulecode: yuktamedia | ||
--- | ||
prebid_member: false | ||
enable_download: false | ||
--- | ||
|
||
#### Registration | ||
|
||
Please visit [https://yuktamedia.com/prebid/](https://yuktamedia.com/prebid/) for more information. | ||
Please visit www.yuktamedia.com or contact us on info@yuktamedia.com for more information. | ||
The YuktaMedia Analytics adapter requires setup and approval from the YuktaMedia team. | ||
Please reach out at info@yuktamedia.com for more information. | ||
|
||
#### Analytics Options | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|--------|----------|--------------------------|-------------|--------| | ||
| pubId | required | YuktaMedia Publisher ID | 1001 | int | | ||
| pubKey | required | YuktaMedia Publisher Key | bsbbksbkbJB | string | | ||
|
||
|
||
### Configuration Example | ||
|
||
``` | ||
pbjs.enableAnalytics({ | ||
provider: 'yuktamedia', | ||
options: { | ||
pubId: 1234, // pubId and pubKey be given by YuktaMedia. | ||
pubKey: 'some string', // Please contact us to get pubId and pubKey. | ||
enableUTMCollection: true, | ||
enableSession: true, | ||
enableUserIdCollection: true | ||
} | ||
}); | ||
``` |