Implementation Methods

The plugin is available in Tag Integration. Alternatively, you can integrate it in the standard pixel as a separate JavaScript file.

Integrate the XAD TV Attribution plugin into the container in which the webpage to be measured is located.

To add plugins to the desired container, proceed as follows:

  1. In the container overview, select the required container by clicking the corresponding entry.

  2. Click Add Plugin.
    image2021-5-21_11-35-0.png

  3. Select XAD TV Attribution by clicking the appropriate button.



  4. Now enter the following information:

    Parameter

    Description

    Mapp-specific XAD customer ID

    Enter your Mapp-specific XAD customer ID here. This is obtained from your Mapp contact person.

    Campaign mediacode

    This is where you enter your campaign mediacode that you want to use to capture the commercial.

    The mediacode you enter has to be set up in the Mapp tool in order for the campaign information to be captured. The captured campaign information is comprised as follows: TV.{{Canal}}.{{Spot}}.{{YYYY-MM-DD hh:mm:ss}} (e.g.: TV.N24.Commercial.2021-09-05T11:49:01Z).

    Name for the event

    This is where you can establish a name for the event used to transfer the ad media.

    Interval in minutes

    This is where you set the time interval in minutes during which the XAD API is permitted to query campaign information. 30 minutes is recommended here as the default.

    Timeframe in seconds

    This is where you set the time frame in seconds during which XAD is permitted to query spot information. 60 seconds is recommended here as the default.

  5. Click Next.


  6. In the "Assign rules" area, you define the page areas on which the measurement is to be carried out.

  7. Then click Add plugin.

  8. Finally, click Publish to publish your container including the newly added XAD TV Attribution plugin.

Since version 3.2.x of the Mapp tracking script, the use of plugins is supported. A plugin is all JavaScript functions that are transferred to the Mapp pixel.

For the integration of the XAD TV Attribution plugin, you need the JavaScript file "pixel-xad.min.js."

  1. Download the JavaScript file "pixel-xad.min.js".

  2. In the JavaScript file "pixel-xad.min.js," make the following adjustments:

    Example

    window.wt_xad_tv = function(conf) {
        if(conf.mode === 'page' && conf.type === 'after' && conf.requestCounter === 1) {
            var xadConfig = window.xadConfig || {
                customerId: '',
                mediaCode: 'mc',
                linkId: 'tv_touchpoint',
                sessionTime: 30,
                timeframe: 5 * 60
            };
            
            /* ... */
        }
    };
    JS

    Parameter

    Description

    customerId

    Enter your Mapp-specific XAD customer ID here. This is obtained from your Mapp contact person.

    mediaCode

    This is where you enter your campaign mediacode that you want to use to capture the commercial.

    The mediacode you enter has to be set up in the Mapp tool in order for the campaign information to be captured. The captured campaign information is comprised as follows: TV.{{Canal}}.{{Spot}}.{{YYYY-MM-DD hh:mm:ss}} (e.g.: TV.N24.Commercial.2017-09-05T11:49:01Z).

    linkIdThis is where you can establish a name for the event used to transfer the ad media.
    sessionTimeThis is where you set the time interval in minutes during which the XAD API is permitted to query campaign information. 30 minutes is recommended here as the default.
    timeframeThis is where you set the time frame in seconds during which XAD is permitted to query spot information. 60 seconds is recommended here as the default.
  3. Include the script file in your website in advance so that it provides the method "wt_xad_tv" under the object "window".


  4. The parameter "executePluginFunction" is used for the activation itself. This can be set either in the configuration variable (webtrekkConfig) in the global pixel file (for example, "webtrekk_v4.js") or as a parameter of a page-specific pixel object.

    Example global configuration

    var webtrekkConfig = {
    	trackId: "111111111111111",
    	trackDomain: "track.webtrekk.net",
    	domain: "www.website.com",
    	executePluginFunction: "wt_xad_tv"
    };
    JS
  5. Example page-specific configuration

    var wt = new webtrekkV3();
    wt.contentId = "de.startseite";
    wt.executePluginFunction = "wt_xad_tv";
    wt.sendinfo();
    JS

    If you want to measure the data on all your pages, we recommend global integration. The page-specific configuration is used for the measurement of individual pages.