Difference between revisions of "DCR Denmark Video iOS SDK"

From Engineering Client Portal

Line 1: Line 1:
{{Breadcrumb|}} {{Breadcrumb|Digital}} {{Breadcrumb|International DCR}}  {{CurrentBreadcrumb}}
+
{{Breadcrumb|}} {{Breadcrumb|Digital}} {{Breadcrumb|DCR & DTVR}}  {{CurrentBreadcrumb}}
 
[[Category:Digital]]
 
[[Category:Digital]]
  
 +
__TOC__
  
 
== Overview ==
 
== Overview ==
 
The Nielsen SDK is one of multiple framework SDKs that Nielsen provides to enable measuring linear (live) and on-demand TV viewing using TVs, mobile devices, etc.
 
The Nielsen SDK is one of multiple framework SDKs that Nielsen provides to enable measuring linear (live) and on-demand TV viewing using TVs, mobile devices, etc.
The App SDK is the framework for mobile application developers to integrate Nielsen Measurement into their media player applications. It supports a variety of Nielsen Measurement Products like Digital in TV Ratings, Digital Content Ratings ([[DCR & DTVR]]), and [[Digital Ad Ratings]] (DAR). Nielsen SDKs are also equipped to measure static content and can track key life cycle events of an application like:
+
The App SDK is the framework for mobile application developers to integrate Nielsen Measurement into their media player applications. It supports a variety of Nielsen Measurement Products like Digital in TV Ratings ([[DCR & DTVR|DTVR]]), Digital Content Ratings ([[DCR & DTVR|DCR]]), and [[Digital Ad Ratings]] (DAR). Nielsen SDKs are also equipped to measure static content and can track key life cycle events of an application like:
 
*Application launch events and how long app was running
 
*Application launch events and how long app was running
  
Line 12: Line 13:
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
 +
! style="width: 30px;" |
 
! style="width: 15%;" | Item
 
! style="width: 15%;" | Item
 
! Description
 
! Description
 
! Source
 
! Source
|-
+
|-style="background-color:#d0f6f8;"
|| '''App ID (appid)''' || Unique ID assigned to the player/site and configured by product. || Provided by Nielsen
+
|| ☑ || '''App ID (apid)''' || Unique ID assigned to the player/site and configured by product. || Contact Nielsen
|-
+
|-style="background-color:#d0f6f8;"
|| '''Nielsen SDK''' || Includes SDK frameworks and '''sample implementation'''; ''See [[iOS SDK Release Notes]]'' || [https://engineeringportal.nielsen.com/docs/Special:Downloads?region=DK Download]
+
|| ☑ || '''Nielsen SDK''' || Includes SDK frameworks and '''sample implementation'''; ""See [[iOS SDK Release Notes]]"" || [[Special:Downloads|Download]]
 
|}
 
|}
  
If need App ID(s) or our SDKs, feel free to reach out to us and we will be happy to help you get started.
 
Refer to [[Digital Measurement Onboarding]] guide for information on how to get a Nielsen App SDK and appid.
 
 
__TOC__
 
==  Implementation ==
 
This guide covers implementation steps for iOS using Xcode utilizing the Standard Nielsen SDK for DCR.
 
 
== Setting up your  Development Environment  ==
 
Prior to SDK Version 6.2.0.0 the  IOS framework has been distributed as a static library packaged into framework bundle format. Apple recommends to use dynamic framework, it has some benefits over static libraries like less executable file size of an app, faster startup time and native support in xCode IDE. Nielsen AppSDK has been transformed into dynamic framework in this release ([[iOS_Static_Framework_Setup|static framework]] is still available).
 
 
If migrating from the static library to this new dynamic framework, once implemented, unless your specific application requires, you can remove the following Frameworks that were once required:<code> [AdSupport, JavascriptCore, SystemConfiguration, Security, AVFoundation, libc++] </code>
 
<br>
 
  
The '''Dynamic framework''' is created as a fat framework. It means that it contains slices required for devices (armv7, arm64) as well as slices required for simulators (i386, x86_64). Simulator slices are needed to let clients build and debug their app on the simulators, but they should be removed before sending the app to the AppStore. The example of the shell script that should be added as a Run Script phase in the application can be [[DCR_Video_iOS_SDK#Removing_Simulators_.28Dynamic_Framework_Only.29|found below]].
+
== Step 1: Setting up your iOS Development Environment ==
 
 
=== How to obtain the NielsenAppApi.Framework ===
 
The Nielsen AppSDK can either be downloaded directly or can be integrated directly within an application through the use of CocoaPods. We recommend using the CocoaPods-based integration whenever possible to ensure you maintain the most recent changes and enhancements to the Nielsen libraries.
 
* [[Digital_Measurement_iOS_Artifactory_Guide|Select to obtain CocoaPods implementation guide]]
 
* [[Special:Downloads|Select to Download Directly]]
 
  
 
=== Configuring Xcode Development Environment ===
 
=== Configuring Xcode Development Environment ===
Starting with SDK version 6.0.0.0, the Nielsen App SDK is compatible with Apple iOS versions 8.0 and above.  In addition, when using the dynamic framework,  all the required frameworks are linked automatically as the are needed.  More details can be found here: https://stackoverflow.com/questions/24902787/dont-we-need-to-link-framework-to-xcode-project-anymore
+
Starting with SDK version 6.0.0.0, the Nielsen App SDK is compatible with Apple iOS versions 8.0 and above.  In addition, the SDK uses the WKWebView class instead of the deprecated UIWebView as per Apple guidelines.  
  
 
<blockquote>'''Note''': All communications between the SDK and the Census (Collection Facility) use HTTPS.</blockquote>
 
<blockquote>'''Note''': All communications between the SDK and the Census (Collection Facility) use HTTPS.</blockquote>
  
=== Download Framework ===
+
=== Importing Frameworks ===
The first step is to download and copy the [[Special:Downloads|NielsenAppApi.framework]] bundle to the app project directory. (''Not required if using CocaPods'')
 
  
=== Add Framework ===
+
1) Extract “NielsenAppApi.Framework” from the Nielsen App SDK zip file and copy it to Frameworks folder of the Xcode project.<br />
In the General tab for app configuration add NielsenAppApi.framework in the list of Embedded Binaries. (''Not required if using CocaPods'')
 
  
=== Add Path ===
+
2) Import following frameworks and libraries into the Frameworks of the Xcode project before creating an instance of the Nielsen App SDK object.
Add path to the NielsenAppApi.framework in the Framework Search Paths build setting. (''Not required if using CocaPods'')
+
* UIKit.framework
 +
* Foundation.framework
 +
* AdSupport.framework
 +
* SystemConfiguration.framework
 +
* Security.framework
 +
** Nielsen Analytics framework makes use of a number of functions in this library.
 +
* AVFoundation.framework
 +
** This framework is mandatory for the iOS SDK version 5.1.1 to work.
 +
* CoreLocation.framework
 +
* CoreMedia.framework
 +
* NielsenAppApi.framework
 +
* libc++.tbd (as SDK contains Objective C++ source file)
 +
** Alternatively, include -lstdc++ in Build Settings → Other Linker Flag of the Xcode project<br />
  
=== Import Framework ===
+
3) Add the code <code>-#import NielsenAppApi/NielsenAppApi.h</code> to the View Controller’s header file.<br />
Add NielsenAppApi.framework module in the source file of your app:
 
  
 +
Note:
 +
* Nielsen App SDK is compatible with Apple iOS versions 9.0 and above.
 +
* The SDK uses the NSURLSession instead of the deprecated NSURLConnection.
 +
* All communications between the SDK and the Census (Collection Facility) use HTTPS
 +
<br />
 
==== Using Swift ====
 
==== Using Swift ====
Add the following:
+
To import a set of Objective-C files in the same app target as your Swift code, you rely on an Objective-C bridging header to expose those files to Swift. Xcode offers to create this header file when you add a Swift file to an existing Objective-C app, or an Objective-C file to an existing Swift app.
 +
 
 +
Select File/New File/Objective-C File  <br />
 +
Xcode will prompt you to create a bridging header.
 +
[[File:bridgingheader 2x.png|600px|center|link=]] <br />
 +
Once this file has been created, you need to add the following:
 
<syntaxhighlight lang="swift">
 
<syntaxhighlight lang="swift">
import NielsenAppApi
+
#import <NielsenAppApi/NielsenAppApi.h>
 
</syntaxhighlight>
 
</syntaxhighlight>
 
 
==== Using Objective-C ====
 
==== Using Objective-C ====
 +
Add the code
 
<syntaxhighlight lang ="objective-c">
 
<syntaxhighlight lang ="objective-c">
@import NielsenAppApi;
+
#import <NielsenAppApi/NielsenAppApi.h>
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
to the View Controller’s header file.
 +
<br/>
 +
 +
== Step 2: Create SDK Instance ==
 +
The latest version of the Nielsen App SDK allows instantiating multiple instances of the SDK object, which can be used simultaneously without any issue. The sharedInstance API that creates a singleton object was deprecated prior to version 5.1.1. (Version 4.0 for Android)
  
== SDK Initialization ==
+
* A maximum of four SDK instances per appid are supported. When a fifth SDK instance is launched, the SDK will return “nil” from [[initWithAppInfo:delegate:]]
The latest version of the Nielsen App SDK allows instantiating multiple instances of the SDK object, which can be used simultaneously without any issue. The sharedInstance API that creates a singleton object was deprecated prior to version 5.1.1. [[Dual_Instances_of_SDK|(Click here for an example of multiple instances)]]
+
* When four SDK instances exist, you must destroy an old instance before creating a new one.
  
 
The following table contains the list of arguments that can be passed via the AppInfo JSON schema.
 
The following table contains the list of arguments that can be passed via the AppInfo JSON schema.
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! Parameter / Argument !! Description !! Source !! Required? !! Example
+
! Parameter / Argument !! Description !! Source !! Required/Obligatory? !! Example
 
|-
 
|-
| appid || Unique Nielsen ID for the application. The ID is a GUID data type. If you did not receive your App ID, let us know and we will provide you. || Nielsen-specified || Yes || PXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
+
| appid || Unique id for the application assigned by Nielsen. It is GUID data type.|| Nielsen-specified || || PE392366B-F2C1-4BC4-AB62-A7DAFDC5172C
 +
|-
 +
| appname || Name of the application || Client-defined || No || Nielsen Sample App
 +
|-
 +
| appversion || Current version of the app used || Client-defined || No || "1.0.2"
 
|-
 
|-
 
| nol_devDebug || Enables Nielsen console logging. Only required for testing
 
| nol_devDebug || Enables Nielsen console logging. Only required for testing
 
|| Nielsen-specified || Optional || "DEBUG"
 
|| Nielsen-specified || Optional || "DEBUG"
 
|}
 
|}
 
+
<br />
== Debug flag for development environment ==
+
==== Sample SDK Initialization Code ====
Player application developers / integrators can use Debug flag to check whether an App SDK API call made is successful. To activate the Debug flag,
+
{{ExampleCode|
Pass the argument <code>@"nol_devDebug":@"INFO"</code>, in the JSON string . The permitted values are:
+
|Swift  =
 
+
Swift 4.0 Example:
* '''INFO''': Displays the API calls and the input data from the application (validate player name, app ID, etc.). It can be used as certification Aid.
 
* '''WARN''': Indicates potential integration / configuration errors or SDK issues.
 
* '''ERROR''': Indicates important integration errors or non-recoverable SDK issues.
 
* '''DEBUG''': Debug logs, used by the developers to debug more complex issues.
 
 
 
Once the flag is active, it logs each API call made and the data passed. The log created by this flag is minimal.
 
<blockquote>'''Note''': DO NOT activate the Debug flag in a production environment.</blockquote>
 
 
 
=== Sample SDK Initialization Code ===
 
 
 
====Swift 4.0 Example:====
 
 
<code>NielsenInit.swift</code>
 
<code>NielsenInit.swift</code>
 
<syntaxhighlight lang="swift">
 
<syntaxhighlight lang="swift">
import Foundation
+
class NielsenInit: NSObject {
import NielsenAppApi
+
     class func createNielsenAppApi(delegate: NielsenAppApiDelegate) -> NielsenAppApi?{
 
+
    let appInformation:[String: String] = [
class NielsenInit : NSObject {
+
          "appid": "PE392366B-F2C1-4BC4-AB62-A7DAFDC5172C",
     class func createNielsenApi(delegate: NielsenAppApiDelegate) -> NielsenAppApi?{
+
            "appversion": "1.0",
       
+
            "appname": "app name here",
        let appInformation:[String: String] = [
 
            "appid": "PDA7D5EE6-B1B8-4123-9277-2A788XXXXXXX",
 
 
             "nol_devDebug": "DEBUG"
 
             "nol_devDebug": "DEBUG"
         ]      
+
         ]
 
         return NielsenAppApi(appInfo:appInformation, delegate:delegate)
 
         return NielsenAppApi(appInfo:appInformation, delegate:delegate)
 
     }
 
     }
Line 115: Line 115:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
===Sample code using AVPlayer===
+
 
 +
Sample code using AVPlayer.
 +
<br />
 
<code>ViewController.swift</code>
 
<code>ViewController.swift</code>
  
 
<syntaxhighlight lang="swift">
 
<syntaxhighlight lang="swift">
class ViewController: UIViewController, NielsenAppApiDelegate, AVPlayerViewControllerDelegate {
+
class ViewController: UIViewController, NielsenAppApiDelegate, AVPictureInPictureControllerDelegate, CLLocationManagerDelegate {
  
// your code//   
+
    let avPlayerViewController = AVPlayerViewController()
 +
    var avPlayer:AVPlayer?
 +
    var nielsenAppApi: NielsenAppApi!
  
 
   override func viewDidLoad() {
 
   override func viewDidLoad() {
 
         super.viewDidLoad()
 
         super.viewDidLoad()
  
        //Getting the instance of NielsenApi
+
         self.nielsenAppApi = NielsenInit.createNielsenAppApi(delegate: self)
         self.nielsenApi = NielsenInit.createNielsenApi(delegate: self)
+
        NSLog("Nielsen SDK initialized")
  
 
             }
 
             }
 
   }
 
   }
 
</syntaxhighlight>
 
</syntaxhighlight>
 
+
|Objective C =
===Objective C ====  
 
 
Initialize the Nielsen App object within the viewDidLoad view controller delegate method using initWithAppInfo:delegate:
 
Initialize the Nielsen App object within the viewDidLoad view controller delegate method using initWithAppInfo:delegate:
 
<blockquote>If App SDK is initialized using init or new methods, it will ignore the API calls resulting in no measurement. The SDK will not return any errors.</blockquote>
 
<blockquote>If App SDK is initialized using init or new methods, it will ignore the API calls resulting in no measurement. The SDK will not return any errors.</blockquote>
<syntaxhighlight lang="objective-c">  
+
<syntaxhighlight lang="objective-c">
#import "NielsenInit.h"
+
#import "NlsAppApiFactory.h"
#import <NielsenAppApi/NielsenEventTracker.h>
+
#import <NielsenAppApi/NielsenAppApi.h>
  
@implementation NielsenInit
+
@implementation NlsAppApiFactory
  
+ (NielsenAppApi *)createNielsenAppApiWithDelegate:(id<NielsenAppApiDelegate>)delegate
+
+ (NielsenAppApi *)createNielsenAppApiWithDelegate:(id<NielsenAppApiDelegate>)delegate;
{  
+
{
    //Initialising the NielsenEventTracker class by passing app information which returns the instance of NielsenEventTracker.
+
     NSDictionary *appInformation = @{
   
+
                                    @"appid": "PE392366B-F2C1-4BC4-AB62-A7DAFDC5172C",
     NSDictionary *appInformation = @{ @"appid": @"PDA7D5EE6-B1B8-4123-9277-2A788XXXXXXX",
+
                                    @"appversion": "1.0",
                            @"nol_devDebug": @"DEBUG" };
+
                                    @"appname": "app name here",
   
+
                                    @"nol_devDebug": @"DEBUG"
 +
                                    };
 
     return [[NielsenAppApi alloc] initWithAppInfo:appInformation delegate:delegate];
 
     return [[NielsenAppApi alloc] initWithAppInfo:appInformation delegate:delegate];
 
}
 
}
 
 
@end
 
@end
 
</syntaxhighlight>
 
</syntaxhighlight>
  
  
The following would be the <code>NielsenInit.h</code> file:
+
The following would be the <code>NlsAppApiFactory.h</code> file:
 
<syntaxhighlight lang="objective-c">
 
<syntaxhighlight lang="objective-c">
 
#import <Foundation/Foundation.h>
 
#import <Foundation/Foundation.h>
  
 
@class NielsenAppApi;
 
@class NielsenAppApi;
@protocol NielsenAppApiDelegate;
+
@protocol NielsenAppApiDeligate;
  
@interface NielsenInit : NSObject
+
@interface NlsAppApiFactory : NSObject
  
+ (NielsenAppApi *)createNielsenAppApiWithDelegate:(id<NielsenAppApiDelegate>)delegate;
+
+ (NielsenAppAPI *) createNielsenAppApiWithDelegate:(id<NielsenAppApiDelegate>)delegate;
  
 
@end
 
@end
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
}}
 +
 +
==== APP SDK Error & Event Codes ====
 +
To view the Error and Event codes for iOS and Android, please review the [[APP SDK Event Codes|App SDK Event Code]] Reference page.
  
====Sample Code:====
+
==== Life cycle of SDK instance ====
 +
Life cycle of SDK instance includes four general states:
 +
# '''Initial state''' – The SDK is not initialized and hence, not ready to process playing information. Once the SDK is moved out of this state, it needs instantiation of the new SDK instance in order to get the instance in the '''Initial state'''.
 +
# '''Idle state''' – The SDK is initialized and is ready to process playing information. Once Initialized, the SDK instance is not processing any data, but is listening for the play event to occur.
 +
# '''Processing state''' – The SDK instance is processing playing information. API calls "play" and "loadMetadata" move the SDK instance into this state. In this state, the SDK instance will be able to process the API calls (see below)
 +
# '''Disabled state''' – The SDK instance is disabled and is not processing playing information. SDK instance moves into this state in one of the following scenarios.
 +
## Initialization fails
 +
## <code>appDisableApi</code> is called
 
<syntaxhighlight lang="objective-c">
 
<syntaxhighlight lang="objective-c">
@implementation ViewController
+
@property (assign) BOOL appDisableApi;
 
 
- (void)viewDidLoad {
 
    [super viewDidLoad];
 
       
 
    //Getting the instance of Nielsen SDK
 
    nielsenApi = [NielsenInit createNielsenAppApiWithDelegate:nil];
 
 
</syntaxhighlight>
 
</syntaxhighlight>
}}
 
 
<!--
 
== Initializing the Nielsen AppSDK to measure the Viewability ==
 
The integrator to support the viewability metrics in the application has to provide a tag value of the player view to let Nielsen AppSDK know that there is a player that needs to be tracked. It’s called the ‘containerId’ and it should be passed in application info dictionary as string while initializing the Nielsen AppSDK.
 
  
=== Android ===
+
== Step 3: Create Metadata Objects ==
{| class="wikitable"
+
The parameters passed must be either a JSON formatted string or a NSDictionary object. The JSON passed in the SDK must be well-formed.
|-
 
! # !! Parameter Name !! Description !! Supported Values !! Example
 
|-
 
| 1 || containerId ||View ID of the UI element used as player view in application. getId() method of View class can be used to get this value. ||A positive integer used to identify the view. || 2131558561
 
|}
 
 
 
=== iOS ===
 
{| class="wikitable"
 
|-
 
! # !! Parameter Name !! Description !! Supported Values !! Example
 
|-
 
| 1 || containerId ||The tag of the UIView that represents the Player View ||The string value representing the NSInteger value with maximum value of NSIntegerMax that is related on 32- or 64-bit applications. || "100" <br> "2131558561"
 
|}
 
 
 
For iOS it is required to link additional frameworks that are needed for viewability engine:<br>
 
<code>JavaScriptCore.framework</code> <br>
 
<code>WebKit.framework</code>
 
 
 
The Nielsen AppSDK uses a tracking WebView (TWV) approach.  For more information on Viewability, please refer to [https://engineeringportal.nielsen.com/docs/Implementing_Viewability_with_AppSDK Implementing Viewability with AppSDK.]
 
-->
 
 
 
== APP SDK Error & Event Codes ==
 
To view the Error and Event codes for iOS, please review the [[APP SDK Event Codes|App SDK Event Code]] Reference page.
 
 
 
== Configure Metadata ==
 
=== Handling JSON Metadata ===
 
All the SDK methods handles only two types of objects: NSString, NSDictionary. The parameters passed must be either a JSON formatted string or a NSDictionary object. The JSON passed in the SDK must be well-formed.
 
 
* NSDictionary object
 
* NSDictionary object
 
** If an object of unexpected type is passed to the method, the error message will be logged.
 
** If an object of unexpected type is passed to the method, the error message will be logged.
Line 220: Line 196:
 
* JSON value must be string value.
 
* JSON value must be string value.
 
** This includes boolean and numeric values. For example, a value of true should be represented with "true", number value 123 should be "123".
 
** This includes boolean and numeric values. For example, a value of true should be represented with "true", number value 123 should be "123".
** All the Nielsen Key names (e.g. appid, program) are case-sensitive. Use the correct variable name as specified in the documentation.
+
** All the Variable Names like appid, appname, dataSrc, title, type etc. are case-sensitive. Use the correct variable name as specified in the documentation.
* JSON string can be prepared using either raw NSString or serialized NSDictionary.
+
* JSON string can be prepared using either raw NSString or serialized NSDictionary.<br />
{{ExampleCode|
+
 
|Swift =
 
<syntaxhighlight lang="swift">
 
  
let contentMetadata = [
+
=== Create channelName Metadata ===
    "type": "content",
 
    "assetid": "C77664",
 
    "title": "Program S2, E3",
 
    "isfullepisode": "Yes",
 
    "program": "Program Name",
 
    "length": "3600",
 
    "airdate": "20200321 10:05:00",
 
    "adloadtype": "2",
 
    "segB": "CustomSegmentValueB", //optional
 
    "segC": "CustomSegmentValueC", //optional
 
    "crossId1": "Standard Episode ID", //optional
 
    "crossId2": "Content Originator" //optional
 
];
 
</syntaxhighlight>   
 
|Objective C = <syntaxhighlight lang="objective-c">
 
NSDictionary * contentMetadata = @ {
 
    @ "type": @ "content",
 
    @ "assetid": @ "C77664",
 
    @ "title": @ "S2,E3",
 
    @ "isfullepisode": @ "y", 
 
    @ "program": @ "Program Name",
 
    @ "length": @ "3600",
 
    @ "airdate": @ "20200321 10:05:00",
 
    @ "adloadtype": @ "2",
 
    @ "segB": @ "CustomSegmentValueB", //optional
 
    @ "segC": @ "CustomSegmentValueC", //optional
 
    @ "crossId1": @ "Standard Episode ID", //optional
 
    @ "crossId2": @ "Content Originator" //optional
 
}
 
</syntaxhighlight>
 
}}
 
<!--
 
=== Configure metadata ===  
 
 
channelName should remain constant throughout the completion of an episode or live stream.
 
channelName should remain constant throughout the completion of an episode or live stream.
 +
<br />
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
 
! Key !! Description !! Values !! Required
 
! Key !! Description !! Values !! Required
 
|-
 
|-
| channelName || ChannelInfo refers to the Channel name. This can be a free-form value
+
| channelName || Any string representing the channel/stream || custom ||
value such as a friendly name for the content being played. the SDK<br/>
 
will pass the application name automatically.
 
|| custom || No
 
 
|-
 
|-
 
|}
 
|}
-->
 
  
=== Content Metadata ===
+
=== Create Content Metadata ===
 
Content metadata should remain constant throughout the entirety of an episode/clip including when ads play.
 
Content metadata should remain constant throughout the entirety of an episode/clip including when ads play.
{{DCR Content Metadata}}
 
  
=== Ad Metadata ===
+
<br/>
The Ad Metadata (if applicable) should be passed for each individual ad.
+
<blockquote> program and title metadata values should be passed to SDK as UTF-8 strings. </blockquote>
 +
 
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
 
! Keys !! Description !! Values !! Required
 
! Keys !! Description !! Values !! Required
 
|-
 
|-
| type || type of Ad || <code>'preroll'</code>,  <code>'midroll'</code>,  <code>'postroll'</code> <br> <code>'ad'</code>  - If specific type can not be identified.|| ✓
+
| type || type of asset || "content" for main content || ✓
 
|-
 
|-
| assetid || unique ID assigned to Ad || custom || ✓
+
| assetid || unique ID assigned to asset || custom<br>(no [[Special Characters]]) ||
|}
 
 
 
=== Example Ad Object ===
 
<syntaxhighlight lang="javascript">
 
// create Ad object
 
"ad": {
 
  "type": "preroll",
 
  "assetid": "AD-ID123"
 
}
 
</syntaxhighlight>
 
 
 
=== Configure Static Metadata if Applicable===
 
The below is to measure [[DCR Static iOS SDK|Static Content.]]  
 
 
 
The Nielsen reserved keys are:
 
{| class="wikitable"
 
 
|-
 
|-
! Key !! Description !! Data Type !! Value !! Required?
+
| program || name of program || custom || ✓
 
|-
 
|-
| type || asset type || fixed || <code>'static'</code> || Yes
+
| title || episode name || custom ||
 
|-
 
|-
| section || section of each site (e.g. section value should be first level in page URL: website.com/section). Limit to 25 unique values || dynamic || custom || Yes
+
| length || length of content in seconds || Length of content in seconds (86400 seconds for live stream (24/7). For Event-Live streams planned length. For VoD video length)||
 
|-
 
|-
| segA || custom segment for reporting: Limit to 25 unique values across custom segments (segA + segB + segC) || dynamic || custom || No
+
| airdate || the original date (local time with hh:mm:ss as 24h time stamp) content became available. This date does not change if the content is rebroadcasted on linear TV. || YYYYMMDD HH:MI:SS (if not known set it to eg. "19700101 00:00:00") ||
 
|-
 
|-
| segB || custom segment for reporting: Limit to 25 unique values across custom segments (segA + segB + segC) || dynamic || custom || No
+
| isfullepisode || full episode flag ||
 +
*"y", "yes", full episode (full content for a program)
 +
*"n", "no", non full episode (only one part of the entire content for a program , i.e. preview, sub-episodes)
 +
||
 +
 
|-
 
|-
| segC || custom segment for reporting: Limit to 25 unique values across custom segments (segA + segB + segC) || dynamic || custom || No
+
|adloadtype || type of Ad load:
 +
* 1) Linear - matches TV ad load
 +
* 2) Dynamic - Dynamic Ad Insertion (DAI)
 +
||
 +
||
 +
 
|}
 
|}
  
The values passed through the Nielsen keys will determine the breakouts that are seen in reporting. The custom segments (A, B & C) will roll into the sub-brand. To not use custom segments A, B and C, do not pass any value in these keys.
+
=== Create Ad Metadata (optional for DR) ===
 +
The Ad Metadata (if applicable) should be passed for each individual ad.
  
'''Aggregation Limits'''
+
Note: All metadata values should be passed as UTF-8 strings.
There are limits on the number of unique values that can be aggregated on in reporting. The specific limitations by key are:
 
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! Key !! Aggregation Limit
+
! Keys !! Description !! Values !! Required
|-
 
| section || maximum of 25 unique values (section <= 25)
 
|-
 
| segA || Maximum number of unique values allowed across segA, segB, and segC is 25 (segA + segB + segC<= 25)
 
 
|-
 
|-
| segB || Maximum number of unique values allowed across segA, segB, and segC is 25 (segA + segB + segC<= 25)
+
| type || type of Ad ||  <code>"preroll"</code>, <code>"midroll"</code>, <code>"postroll"</code> <br> <code>"ad"</code>  - If specific type can not be identified.|| ✓
 
|-
 
|-
| segC || Maximum number of unique values allowed across segA, segB, and segC is 25 (segA + segB + segC<= 25)
+
| assetid || unique ID assigned to Ad || custom<br>(no [[Special Characters]]) || ✓
 
|}
 
|}
  
=== Example Static Object ===
+
=== MetaData Example ===
<syntaxhighlight lang="javascript">
+
{{ExampleCode|
        let staticData =
+
|Swift =
            [
+
<syntaxhighlight lang="swift">
                "type": "static",
+
    let channelInfo = [
                "section": "Section Name",
+
        "channelName": "My Channel Name 1",
                "segA": "segmentA",
+
    ]
                "segB": "segmentB",
 
                "segC": "en-us"
 
        ]
 
</syntaxhighlight>
 
  
== Configure API Calls ==
+
    let contentMetadata = [
<!--[[File:appsdkTimeline-DCR.png|icon|link=]]-->
+
      "assetid" : "unique_content_id",
=== Sample API Sequence ===
+
        "type" : "content",
A Sample API sequence could follow this flow:
+
        "program" : "program name",
{| class="wikitable"
+
        "title" : "episode title",
|-
+
        "length" : "length in seconds",
! Type !! Sample code !! Description
+
        "airdate" : "20200713 10:22:00",
|-
+
        "isfullepisode" : "y",
|On App Start||<syntaxhighlight lang=Swift>
+
        "adloadtype" : "2"
NielsenInit.createMainBrandApi(delegate: self)
+
    ]
self.data = loadStaticMetadata()
 
self.nielsenMeter .loadMetadata(self.data)</syntaxhighlight> || // Pass Static Metadata here if applicable
 
|-
 
| rowspan="2" | Start of stream || <code>nielsenMeter.play()</code> || // Call at start of each new stream
 
|-
 
| <code>nielsenMeter.loadMetadata(contentMetadata)</code> || // MetadataObject contains the JSON metadata<br> for the content being played
 
|-
 
| Content || <code>nielsenMeter.playheadPosition(pos);</code> || // playheadPosition is position of the playhead <br>while the content is being played
 
|-
 
| End of Stream || <code>nielsenMeter.end()</code> || // Content playback is completed.
 
|}
 
  
=== SDK Events ===
+
    let adMetadata = [
{| class="wikitable"
+
        "assetid" : "unique_postroll_ad_id",
|-
+
        "type" : "postroll"
! Event !! Parameter !! Description
+
    ]
|-
 
| 'play' || || Call at start of each new stream
 
|-
 
| 'loadMetadata' || content/ad metadata object || Needs to be called at the beginning of each asset
 
|-
 
| 'playheadPosition' || playhead position as integer<br/>
 
VOD: current position in seconds <br/>
 
Live: current UNIX timestamp (seconds since Jan-1-1970 UTC) <br/>
 
Note: 'PlayheadPosition' has to be called every second
 
||
 
Pass playhead position every second during playback
 
|-
 
| 'stop' || playhead position || Call during any interruption to content or Ad playback and at the end of each Ad.
 
|-
 
| 'end' || playhead position in seconds || Call when the current video asset completes playback and pass the playhead position. <br/>
 
Example: At the end of the content stream, if the user switches to another piece of content, when the browser is refreshed or closed.
 
|}
 
<blockquote>Note: For livestream, send the UNIX timestamp, for VOD send the time in seconds as integer. The final playhead position must be sent for the current asset being played before calling <code>'''stop'''</code>, <code>'''end'''</code> or<code> '''loadmetadata'''</code>,.</blockquote>
 
  
=== Life cycle of SDK instance ===
+
</syntaxhighlight>
Life cycle of SDK instance includes four general states:
+
|Objective C = <syntaxhighlight lang="objective-c">
# '''Initial state''' – The SDK is not initialized and hence, not ready to process playing information. Once the SDK is moved out of this state, it needs instantiation of the new SDK instance in order to get the instance in the '''Idle state'''.
+
NSDictionary *channelInfo = @
# '''Idle state''' – The SDK is initialized and is ready to process playing information. Once Initialized, the SDK instance is not processing any data, but is listening for an event to occur.
+
{
# '''Processing state''' – The SDK instance is processing playing information. The <code>'''play'''</code> and <code>'''loadMetadata''' </code> calls move the SDK instance into this state. In this state, the SDK instance will be able to process the following calls.
+
  @"channelName":@"My Channel Name 1",
## <code>'''playheadPosition'''</code> – Call this API every one second when playhead position is active. If a LIVE event, use the current UNIX timestamp (seconds since Jan-1-1970 UTC).
+
}
## <code>'''stop'''</code> – Call this API when the content or Ad playback is interrupted and at the end of each Ad.
 
## <code>'''end'''</code> – Call when content completes. When called, the SDK instance exits from Processing state.
 
# '''Disabled state''' – The SDK instance is disabled and is not processing playing information.
 
## <code>'''appDisableApi'''</code> is set to <code>true</code>
 
  
<blockquote>'''Note:''' For API Version 5.1 and above, App SDK will fire data pings and continue measurement even after the user has opted out from Nielsen measurement on a device. The data ping will be marked as opted-out ping.
+
NSDictionary *contentMetadata = @
 +
  {
 +
  @"assetid" : "unique_content_id",
 +
  @"type" : "content",
 +
  @"program" : "program name",
 +
  @"title" : "episode title",
 +
  @"length" : "length in seconds",
 +
  @"airdate" : "20161013 20:00:00",
 +
  @"isfullepisode" : "y",
 +
  @"adloadtype" : "2"
 +
}
  
'''Note''': In case of any interruptions during playback due to alarm, calendar, call, flight mode, Wi-Fi toggle, channel change, etc., call [[stop]] to stop the measurement.
+
NSDictionary *adMetadata = @
* As soon as the playback resumes, call <code>'''loadMetadata''' </code> and  <code>'''playheadPosition'''</code> </blockquote>
+
  {
 
+
   @"assetid" : "unique_postroll_ad_id",
=== API Call Sequence ===
+
   @"type" : "postroll"
==== Use Case 1: Content has no Advertisements ====
+
}
Call [[play()]] at start of stream
+
</syntaxhighlight>
 
+
}}
Call [[loadMetadata()]] with JSON metadata for content as below.
 
<syntaxhighlight lang="json">{
 
   "type": "content",
 
  "assetid": "vid345-67483",
 
   "program": "ProgramName",
 
  "title": "Program S3, EP1",
 
  "length": "3600",
 
  ...
 
}</syntaxhighlight>
 
Call [[playheadPosition|playheadPosition()]] every one second until a pause / stop.
 
Use the sample API sequence below as a reference to identify the specific events that need to be called during content playback without ads.
 
{| class="wikitable"
 
|-
 
! Type !! Sample code !! Description
 
|-
 
| rowspan="2" | Start of stream || <code>mAppSdk.play(); </code> || // Call at start of each new stream
 
|-
 
| <code>mAppSdk.loadMetadata(contentMetaDataObject);</code> || // contentMetadataObject contains the JSON metadata for the content being played
 
|-
 
| Content || <code>mAppSdk.setPlayheadPosition(playheadPosition);</code> || // position is position of the playhead while the content is being played
 
|-
 
| Interruption || <code>mAppSdk.stop();</code> || // call stop when content playback is interrupted
 
|-
 
| rowspan="2" | Resume Content || <code>mAppSdk.loadMetadata(contentMetaDataObject);</code>  || // Call loadMetadata and pass content metadata object when content resumes
 
|-
 
|<code>mAppSdk.setPlayheadPosition(playheadPosition);</code> || // continue pasing playhead position every second starting from position where content is resumed
 
|-
 
| End of Stream || <code>mAppSdk.end();</code> || // Content playback is completed.
 
|}
 
 
 
==== Use Case 2: Content has Advertisements ====
 
Call [[play()]] at start of stream
 
 
 
Call [[loadMetadata()]] with JSON metadata for ad as below.
 
<syntaxhighlight lang="json">{
 
  "type": "preroll",
 
  "assetid": "ad123"
 
}</syntaxhighlight>
 
<blockquote>Note: In case the individual ad details are not available, send ad pod (presence) details through the [[loadMetadata]] and playhead position through [[playheadPosition]].</blockquote>
 
  
Call [[playheadPosition|playheadPosition()]] every one second until a pause / stop / another [[loadMetadata()]] is called. Playhead should be passed for the entire duration of ad pod, if the ad pod details are passed as part of [[loadMetadata()]].
+
== Step 4: Start the Measurement ==
 
 
The sample API sequence can be used as a reference to identify the specific events that need to be called during content and ad playback.
 
{| class="wikitable"
 
|-
 
! Type !! Sample code !! Description
 
|-
 
| rowspan="2" | Start of stream || <code>mAppSdk.play(); </code> || // stream starts
 
|-
 
| <code>mAppSdk.loadMetadata(contentMetaDataObject);</code> || // contentMetadataObject contains the JSON metadata for the content being played
 
|-
 
| rowspan="3" | Preroll || <code>mAppSdk.loadMetadata(prerollMetadataObject);</code> || // prerollMetadataObject contains the JSON metadata for the preroll ad
 
|-
 
| <code>mAppSdk.playheadPosition(playheadPosition);</code> || // position is position of the playhead while the preroll ad is being played
 
|-
 
| <code>mAppSdk.stop();</code> || // Call stop after preroll occurs
 
|-
 
| rowspan="2" | Content || <code>mAppSdk.loadMetadata(contentMetaDataObject);</code> || // contentMetadataObject contains the JSON metadata for the content being played
 
|-
 
| <code>mAppSdk.playheadPosition(playheadPosition);</code> || // position is position of the playhead while the content is being played
 
|-
 
| rowspan="3" | Midroll || <code>mAppSdk.loadMetadata(midrollMetaDataObject);</code> || // midrollMetadataObject contains the JSON metadata for the midroll ad
 
|-
 
| <code>mAppSdk.playheadPosition(playheadPosition);</code> || // position is position of the playhead while the midroll ad is being played
 
|-
 
| <code>mAppSdk.stop();</code> || // Call stop after midroll occurs
 
|-
 
| rowspan="2" | Content Resumes || <code>mAppSdk.loadMetadata(contentMetaDataObject);</code> || // contentMetadataObject contains the JSON metadata for the content being played
 
|-
 
| <code>mAppSdk.playheadPosition(playheadPosition);</code> || // position is position of the playhead while the content is being played
 
|-
 
| End of Stream || <code>mAppSdk.end();</code> || // Call end() at the end of content
 
|-
 
| rowspan="3" | Postroll || <code>mAppSdk.loadMetadata(postrollMetaDataObject);</code> || // postrollMetadataObject contains the JSON metadata for the postroll ad
 
|-
 
| <code>mAppSdk.playheadPosition(playheadPosition);</code> || // position is position of the playhead while the postroll ad is being played
 
|-
 
| <code>mAppSdk.stop();</code> || // Call stop after postroll occurs
 
|}
 
  
<blockquote>Note: Each Ad playhead should begin from 0 at ad start.  When content has resumed following an ad break, playhead position must continue from where previous content segment was left off.</blockquote>
+
=== Overview of SDK API Calls ===
  
== Sequence of Calls ==
+
==== play ====
=== play ===
+
The play method prepares the SDK for reporting once an asset has loaded and playback has begun. Use play to pass the channel descriptor information through channelName parameter when the user taps the '''Play''' button on the player. Call play only when initially starting the video.
Call <code>play</code> at the start of each new stream. If changing videos or watching a new video, call <code>play()</code> each time.  
 
 
{{ExampleCode|
 
{{ExampleCode|
|Objective C = <syntaxhighlight lang="objective-c">   [nielsenAppApi play:()];</syntaxhighlight>
+
|Objective C = <syntaxhighlight lang="objective-c">nielsenAppApi play:(JSONObject channelInfo);</syntaxhighlight>
|Swift = <syntaxhighlight lang="swift">nielsenAppApi?.play();</syntaxhighlight>
+
|Swift = <syntaxhighlight lang="swift">self.nielsenAppApi?.play(channelInfo);</syntaxhighlight>
 
}}
 
}}
  
=== loadMetadata ===
+
==== loadMetadata ====
 +
Needs to be called at the beginning of each asset, pass JSON object for relevant content or ad. Make sure to pass as 1st loadMetadata for content at the begining of playlist - see below API call sequence examples.
 
{{ExampleCode|
 
{{ExampleCode|
|Objective C = <syntaxhighlight lang="objective-c">[nielsenApi loadMetadata:(contentMetadata)];</syntaxhighlight>
+
|Objective C = <syntaxhighlight lang="objective-c">nielsenAppApi loadMetadata:(id)contentMetadata;</syntaxhighlight>
 
|Swift = <syntaxhighlight lang="swift">self.nielsenAppApi?.loadMetadata(contentMetadata)</syntaxhighlight>
 
|Swift = <syntaxhighlight lang="swift">self.nielsenAppApi?.loadMetadata(contentMetadata)</syntaxhighlight>
 
}}
 
}}
  
=== playheadPosition ===
+
==== playheadPosition ====
{{ExampleCode|
+
Pass playhead position every second during playback. for VOD: pass current position in seconds. for Live: current Unix timestamp (seconds since Jan-1-1970 UTC) - if it is possible to seek back in Live content, then pass related Unix time (not current). Pass whole number that increments only by 1 like 1,2,3..
 +
{{ExampleCode|'''
 
|Objective C = <syntaxhighlight lang="objective-c">
 
|Objective C = <syntaxhighlight lang="objective-c">
 
+
nielsenAppApi playheadPosition: (long long) playheadPos
-(void) setPlayHeadPosition {
 
   
 
    //Setting play head position
 
    CMTime timeInterval = CMTimeMakeWithSeconds(1, 1);
 
    [player addPeriodicTimeObserverForInterval:(timeInterval) queue:dispatch_get_main_queue() usingBlock:^(CMTime time){
 
        NSTimeInterval seconds = CMTimeGetSeconds(time);
 
        NSInteger intSec = seconds;
 
       
 
        //Sending data dictionary to SDK with updated playHead position.
 
        [nielsenApi playheadPosition:(intSec)];
 
    }];
 
}
 
 
</syntaxhighlight>
 
</syntaxhighlight>
 
 
|Swift = <syntaxhighlight lang="swift">
 
|Swift = <syntaxhighlight lang="swift">
        //Monitor the Playhead position of the AVPlayer
+
self.nielsenAppApi?.playheadPosition(pos);
        let timeInterval: CMTime = CMTimeMakeWithSeconds(1.0,10)
 
        self.avPlayerViewController.player?.addPeriodicTimeObserver(forInterval: timeInterval, queue: DispatchQueue.main) {(elapsedTime: CMTime) -> Void in
 
            if self.avPlayerViewController.player!.currentItem?.status == .readyToPlay {
 
                let time : Float64 = self.avPlayerViewController.player!.currentTime().seconds;
 
                let pos = Int64(time);
 
                NSLog("New Elapse Time = \(time)");
 
                self.nielsenAppApi?.playheadPosition(pos);
 
            }
 
        }
 
    }
 
 
</syntaxhighlight>
 
</syntaxhighlight>
 
}}
 
}}
  
=== stop ===
+
==== stop ====
 +
Call when
 +
* content or ads complete playing
 +
* when a user pauses playback
 +
* upon any user interruption scenario - see bellow chapter Interruption scenario
 +
 
 
{{ExampleCode|
 
{{ExampleCode|
|Objective C = <syntaxhighlight lang="objective-c">[nielsenApi stop];</syntaxhighlight>
+
|Objective C = <syntaxhighlight lang="objective-c">nielsenAppApi stop</syntaxhighlight>
|Swift = <syntaxhighlight lang="swift">nielsenApi.stop()</syntaxhighlight>
+
|Swift = <syntaxhighlight lang="swift">self.nielsenAppApi?.stop</syntaxhighlight>
 
}}
 
}}
  
=== end ===
+
==== end ====
When content stop is initiated and content cannot be resumed from the same position (it can only be restarted from the beginning of stream).
+
Call when the content asset completes playback.  Stops measurement progress.
 
{{ExampleCode|
 
{{ExampleCode|
|Objective C = <syntaxhighlight lang="objective-c">[nielsenApi end];</syntaxhighlight>
+
|Objective C = <syntaxhighlight lang="objective-c">nielsenAppApi end;</syntaxhighlight>
|Swift = <syntaxhighlight lang="swift">nielsenApi.end()</syntaxhighlight>
+
|Swift = <syntaxhighlight lang="swift">self.nielsenAppApi?.end</syntaxhighlight>
}}
+
 
 +
<br />
  
== Handling Foreground and Background states ==
+
=== Start the Measurement ===
For iOS, background/foreground detection is handled by the app lifecylce APIs which are provided by [https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/TheAppLifeCycle/TheAppLifeCycle.html Apple:]
+
In order to start the measurement, follow the 3 first steps below i.e. for Content without Ads. When terminating the Content playback call <code>end</code> to terminate the Content Measurement for the given asset.
  
Foreground/Background state measurement is a requirement of Nielsen AppSDK implementation which is especially crucial for static measurement.
+
{| class="wikitable"
 +
|-
 +
! Playlist !! Sample code !! Description
 +
|-
 +
| rowspan="2" | 1. Start of stream || <code>play(channelName)</code> || channelName contains JSON metadata of channel/video name being played
 +
|-
 +
| <code>loadMetadata(contentMetadataObject)</code> || contentMetadataObject contains the JSON metadata for the content being played
 +
|-
 +
| 2. Content is playing|| <code>playheadPosition(position)</code> || playheadPosition is position of the playhead while the content is being played
 +
|-
 +
| 3. End of Stream || <code>end</code> || Content playback is completed.
 +
|}
  
== Interruptions during playback ==
+
== Step 5: Stop/Resume the Measurement for video Playback Interruptions ==
 
As part of integrating Nielsen App SDK with the player application, the Audio / Video app developer needs to handle the following possible interruption scenarios:
 
As part of integrating Nielsen App SDK with the player application, the Audio / Video app developer needs to handle the following possible interruption scenarios:
 
* Pause / Play
 
* Pause / Play
Line 564: Line 382:
 
* Alarm Interrupt
 
* Alarm Interrupt
 
* Content Buffering
 
* Content Buffering
* Device Lock / Unlock  
+
* Device Lock / Unlock (Video players only, not for Audio players)
* App going in the Background/Foreground  
+
* App going in the Background/Foreground (Video players only, not for Audio players)
 
* Channel / Station Change Scenario
 
* Channel / Station Change Scenario
 
* Unplugging of headphone
 
* Unplugging of headphone
 
In case of encountering one of the above interruptions, the player application needs to
 
In case of encountering one of the above interruptions, the player application needs to
* Call [[stop]] immediately (except when content is buffering) and withhold sending playhead position.
+
* Call <code>stop</code> immediately (except when content is buffering) and withhold sending playhead position.
* Start sending API calls – <code>'loadMetadata'</code> and <code>'playheadPosition'</code> for the new viewing session, once the playback resumes.
+
* Start sending pings <code>loadMetadata</code> and <code>playheadPosition</code> for the new viewing session, once the playback resumes.
Please see the [https://engineeringportal.nielsen.com/docs/Digital_Measurement_Interruption_Scenarios Interruption Scenarios Page] for more details
+
Please see the [[Digital Measurement FAQ]] for more details
  
== Using the NielsenAppSDKJSHandler ==
+
== SDK Integration Architecture Diagram ==
There could be a scenario in which a browser page, that is already tagged with the Nielsen BSDK, needs to be loaded via a webview.  In this situation it is recommended to use the '''NielsenAppSDKJSHandler''' which will allow communication between the AppSDK and the BSDK.
 
<br>
 
  
'''This feature is supported in versions 7.2 and above.'''
+
=== For Content Playback ===
<br>
 
  
=== Implementation ===
+
[[File:nlsn-sdk-achitecture-diagram_content.png||SDK Integration Architecture Diagram - Content]]
* Make sure you have the latest NielsenAppApi.framework from Nielsen containing the NielsenAppSDKJSHandler class.
 
* Add NielsenAppSDKJSHandler instance as web view message handler object conforming to WKScriptMessageHandler protocol with name: "NielsenSDKMsg".
 
<br>
 
'''Objective-C:'''
 
<syntaxhighlight lang=Objective-c>
 
self.jsAppSDK = [[NielsenAppSDKJSHandler alloc] init];
 
[self.webView.configuration.userContentController addScriptMessageHandler:self.jsAppSDK name:@"NielsenSDKMsg"];
 
</syntaxhighlight>
 
<br>
 
'''Swift:'''
 
<syntaxhighlight lang=Swift>
 
self.jsAppSDK=NielsenAppSDKJSHandler(apiType: "ggPM")
 
if let jsAppSDK = self.jsAppSDK{
 
  self.webView?.configuration.userContentController.add(jsAppSDK, name: "NielsenSDKMsg")
 
</syntaxhighlight>
 
<br>
 
This will enable listening to BSDK api calls within the APPSDK.  Please make sure your Technical Account Manager is aware that you wish to implement this method so a configuration file can be modified on the Nielsen servers; however, there are '''no changes required to the Browser page'''.
 
  
==== Example:====
+
=== For Ad Playback ===
The below is an example of opening a webview with the NielsenApp[SDKJSHandler using Swift 5.0
+
[[File:nlsn-sdk-achitecture-diagram_ad.png||SDK Integration Architecture Diagram - Ad]]
<syntaxhighlight lang=java>
 
  let jsFunctionNativeMessage = "NielsenSDKMsg"
 
  var jsAppSDK: NielsenAppSDKJSHandler?
 
   
 
    override func loadView() {
 
        webView = WKWebView()
 
        webView.navigationDelegate = self
 
        view = webView
 
    }
 
   
 
    override func viewDidLoad() {
 
        super.viewDidLoad()
 
 
 
        let url = URL(string: "https://nielsen.com/index.htm")!
 
        self.jsAppSDK=NielsenAppSDKJSHandler(apiType: "ggPM")
 
        if let jsAppSDK = self.jsAppSDK{
 
            self.webView?.configuration.userContentController.add(jsAppSDK, name: "NielsenSDKMsg")
 
            webView.load(URLRequest(url: url))
 
            webView.allowsBackForwardNavigationGestures = true
 
        }
 
}
 
    deinit {
 
        if let webView = self.webView {
 
            webView.configuration.userContentController.removeScriptMessageHandler(forName: jsFunctionNativeMessage)
 
        }
 
        self.jsAppSDK = nil
 
        if let webView = self.webView {
 
            webView.removeFromSuperview()
 
        }
 
        self.webView = nil
 
    }
 
}
 
 
 
</syntaxhighlight>
 
<br>
 
Please note:  The page you load into the webview cannot have mixed protocol content.  For example, if your page is https:// you cannot have any images on the page as http:// or you will encounter errors.
 
<br>
 
 
 
== Pre-Certification Checklists ==
 
After the application is ready to be sent for Nielsen Certification, please go through the [[Digital Pre-Certification Checklist App SDK]] and ensure the app behaves as expected, before submitting to Nielsen.
 
  
 
== Privacy ==
 
== Privacy ==
Line 646: Line 404:
 
The privacy section will be added soon.
 
The privacy section will be added soon.
  
== AirPlay ==
+
== Step 7 :  Test your player by yourself ==
To implement OTT measurement, report OTT changes to the SDK using public API interface: [[updateOTT]]
+
=== Guide ===
 +
1. Connect your PC and test device (tablet or phone) via same router.<br />
 +
2. PC side: run Proxy sw (like Charles) and get local IP<br />
 +
3. Test device: modify Wifi setting to pass through Proxy IP from add 2<br />
 +
4. Test device: run your player, launch video<br />
 +
5. PC side: filter traffic by "nmr" and confirm presence of GN pings<br />
  
In order to detect AirPlay and mirroring changes we use AVAudioSessionPortDescription properties that are different on different iOS versions. We found that on iOS versions 8 - 10 <code>AVAudioSessionPortDescription</code> has the following values:<br>
 
<code>
 
AirPlay: type = AirPlay; name = Apple TV 4K; UID = DC:56:E7:53:72:85-airplay <br>
 
Mirroring: type = AirPlay; name = Apple TV 4K; UID = DC:56:E7:53:72:85-screen
 
</code><br>
 
  
For iOS 11+ some parameters like name and UID have different values:<br>
+
=== Example of GN ping ===
<code>
+
<code></code>
AirPlay: type = AirPlay; name = AirPlay; UID = 0eb63aae-5915-45f1-b0f7-0102a0e50d53 <br>
 
Mirroring: type = AirPlay; name = Apple TV 4K; UID = 4335E8A9-1C0A-4251-9000-28CA5FA2F3CF-192731714653291-screen<br>
 
</code>
 
 
 
The following code snipped is suggested for AirPlay / mirroring detection on iOS devices.
 
 
 
{{ExampleCode|
 
|Objective C =
 
<syntaxhighlight lang="objective-c">
 
– (void)updateOTT:(id)ottInfo;
 
</syntaxhighlight>
 
=== Subscribe to AVAudioSessionRouteChangeNotification ===
 
<syntaxhighlight lang="objective-c">
 
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleRouteChanged:) name:AVAudioSessionRouteChangeNotification object:nil];
 
</syntaxhighlight>
 
 
 
=== Handle AVAudioSessionRouteChangeNotification and prepare OTT dictionary:===
 
<syntaxhighlight lang="objective-c">
 
- (void)handleRouteChanged:(NSNotification *)notification
 
{
 
NSMutableDictionary *ottDict = [NSMutableDictionary dictionaryWithDictionary: @{@"ottStatus": @"0"}];
 
 
 
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
 
AVAudioSessionRouteDescription *currentRoute = audioSession.currentRoute;
 
for (AVAudioSessionPortDescription *outputPort in currentRoute.outputs) {
 
if ([outputPort.portType isEqualToString:AVAudioSessionPortAirPlay]) {
 
ottDict[@"ottStatus"] = @"1";
 
ottDict[@"ottDeviceModel"] = outputPort.portName;
 
ottDict[@"ottDeviceID"] = outputPort.UID;
 
 
 
if ([outputPort.portName isEqualToString:@"AirPlay"]) {
 
ottDict[@"ottDevice"] = @"airplay";
 
ottDict[@"ottType"] = @"airplay";
 
}
 
else {
 
if ([outputPort.portName containsString:@"Apple TV"]) {
 
ottDict[@"ottDevice"] = @"appleTV";
 
}
 
else {
 
ottDict[@"ottDevice"] = @"other";
 
}
 
 
 
if ([outputPort.UID hasSuffix:@"airplay"]) {
 
ottDict[@"ottType"] = @"airplay";
 
}
 
else if ([outputPort.UID hasSuffix:@"screen"]) {
 
ottDict[@"ottType"] = @"mirroring";
 
}
 
else {
 
ottDict[@"ottType"] = @"other";
 
}
 
}
 
}
 
}
 
 
 
// report OTT status update to Nielsen SDK
 
[self reportOTTWithDict:ottDict];
 
}
 
</syntaxhighlight>
 
 
 
=== Report OTT update to the Nielsen SDK ===
 
<syntaxhighlight lang="objective-c">
 
- (void)reportOTTWithDict:(NSDictionary *)ottDict
 
{
 
[self.nielsenSDK updateOTT:ottDict];
 
}
 
</syntaxhighlight>
 
 
 
|Swift =
 
<syntaxhighlight lang="swift">
 
nielsenSdk.updateOTT(currentStatus)
 
</syntaxhighlight>
 
 
 
=== Subscribe to AVAudioSessionRouteChangeNotification ===
 
<syntaxhighlight lang="swift">
 
NotificationCenter.default.addObserver(self, selector: #selector(handleRouteChanged(_:)), name: NSNotification.Name.AVAudioSessionRouteChange, object: nil)
 
</syntaxhighlight>
 
 
 
=== Handle AVAudioSessionRouteChangeNotification and prepare OTT dictionary:===
 
 
 
<syntaxhighlight lang ="Swift">
 
func handleRouteChanged(_ notification: Notification) {
 
var currentStatus: [String: String] = ["ottStatus": "0"]
 
 
 
let session = AVAudioSession.sharedInstance()
 
let currentRoute = session.currentRoute
 
for outputPort in currentRoute.outputs {
 
if outputPort.portType == AVAudioSessionPortAirPlay {
 
currentStatus["ottStatus"] = "1"
 
currentStatus["ottDeviceModel"] = outputPort.portName
 
currentStatus["ottDeviceID"] = outputPort.uid
 
 
 
if outputPort.portName == "AirPlay" {
 
currentStatus["ottDevice"] = "airplay"
 
currentStatus["ottType"] = "airplay"
 
}
 
else {
 
if outputPort.portName.contains("Apple TV") {
 
currentStatus["ottDevice"] = "appleTV"
 
}
 
else {
 
currentStatus["ottDevice"] = "other"
 
}
 
 
 
if outputPort.uid.hasSuffix("airplay") {
 
currentStatus["ottType"] = "airplay"
 
}
 
else if outputPort.uid.hasSuffix("screen") {
 
currentStatus["ottType"] = "mirroring"
 
}
 
else {
 
currentStatus["ottType"] = "other"
 
}
 
}
 
}
 
}
 
 
 
// report OTT status update to Nielsen SDK
 
self.reportOTTUpdate(currentStatus)
 
}
 
</syntaxhighlight>
 
 
 
=== Report OTT update to the Nielsen SDK===
 
<syntaxhighlight lang ="Swift">
 
func reportOTTUpdate(_ ottDict: [String: String]) {
 
if let nielsenSdk = self.nielsenAppApi {
 
nielsenSdk.updateOTT(currentStatus)
 
}
 
}
 
</syntaxhighlight>
 
}}
 
 
 
== Going Live ==
 
Following Nielsen testing, you will need to:
 
 
 
# '''Disable Debug Logging''': Disable logging by deleting <code>{nol_devDebug: 'DEBUG'}</code> from initialization call.
 
# '''Notify Nielsen''': Once you are ready to go live, let us know so we can enable you for reporting. We will not be able to collect or report data prior to receiving notification from you.
 
 
 
== Removing Simulators (Dynamic Framework Only)==
 
 
 
Simulator slices are needed to let clients build and debug their app on the simulators, but they should be removed before sending the app to the AppStore.  Here is an example Shell script that could be added as a Run Script phase in the application.
 
 
 
 
 
<syntaxhighlight lang='bash'>
 
 
 
APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"
 
 
 
# This script loops through the frameworks embedded in the application and
 
# removes unused architectures.
 
find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK
 
do
 
FRAMEWORK_EXECUTABLE_NAME=$(defaults read "$FRAMEWORK/Info.plist" CFBundleExecutable)
 
FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME"
 
echo "Executable is $FRAMEWORK_EXECUTABLE_PATH"
 
 
 
EXTRACTED_ARCHS=()
 
 
 
for ARCH in $ARCHS
 
do
 
echo "Extracting $ARCH from $FRAMEWORK_EXECUTABLE_NAME"
 
lipo -extract "$ARCH" "$FRAMEWORK_EXECUTABLE_PATH" -o "$FRAMEWORK_EXECUTABLE_PATH-$ARCH"
 
EXTRACTED_ARCHS+=("$FRAMEWORK_EXECUTABLE_PATH-$ARCH")
 
done
 
 
 
echo "Merging extracted architectures: ${ARCHS}"
 
lipo -o "$FRAMEWORK_EXECUTABLE_PATH-merged" -create "${EXTRACTED_ARCHS[@]}"
 
rm "${EXTRACTED_ARCHS[@]}"
 
 
 
echo "Replacing original executable with thinned version"
 
rm "$FRAMEWORK_EXECUTABLE_PATH"
 
mv "$FRAMEWORK_EXECUTABLE_PATH-merged" "$FRAMEWORK_EXECUTABLE_PATH"
 
 
 
done
 
</syntaxhighlight>
 
  
== Sample Applications ==
+
== Step 8 :  Provide your app for certification ==
The below sample applications have been designed to show the Simplified API's functionality and are broken into two distinct categories:
+
Once ready please send your application to Nielsen local staff for certification.
* '''Basic''' - To show the functionality of the Nielsen Simplified API using a standard no-frills player.
 
** [[Swift Basic Sample|Swift 5.0 Sample]]
 
** [[Objective-c Basic example|Objective-C Sample]]
 
** [[Android Basic example|Android Studio Example]]
 
  
* '''Advanced''' - Nielsen Simplified API integrated into a custom video player.
+
== Step 9 : Going Live ==
** [https://engineeringportal.nielsen.com/docs/Special:Downloads Swift 5.0 Sample]
+
After the integration has been certified (but not prior that), disable debug logging by deleting {nol_sdkDebug: "DEBUG"} from initialization call - see Step 2.
** [https://engineeringportal.nielsen.com/docs/Special:Downloads Objective-C Sample]
 
** [https://engineeringportal.nielsen.com/docs/Special:Downloads Java/Android Studio Sample]
 

Revision as of 11:57, 24 November 2020

Engineering Portal breadcrumbArrow.png Digital breadcrumbArrow.png DCR & DTVR breadcrumbArrow.png DCR Denmark Video iOS SDK

Overview

The Nielsen SDK is one of multiple framework SDKs that Nielsen provides to enable measuring linear (live) and on-demand TV viewing using TVs, mobile devices, etc. The App SDK is the framework for mobile application developers to integrate Nielsen Measurement into their media player applications. It supports a variety of Nielsen Measurement Products like Digital in TV Ratings (DTVR), Digital Content Ratings (DCR), and Digital Ad Ratings (DAR). Nielsen SDKs are also equipped to measure static content and can track key life cycle events of an application like:

  • Application launch events and how long app was running

Prerequisites

Before you start the integration, you will need:

Item Description Source
App ID (apid) Unique ID assigned to the player/site and configured by product. Contact Nielsen
Nielsen SDK Includes SDK frameworks and sample implementation; ""See iOS SDK Release Notes"" Download


Step 1: Setting up your iOS Development Environment

Configuring Xcode Development Environment

Starting with SDK version 6.0.0.0, the Nielsen App SDK is compatible with Apple iOS versions 8.0 and above. In addition, the SDK uses the WKWebView class instead of the deprecated UIWebView as per Apple guidelines.

Note: All communications between the SDK and the Census (Collection Facility) use HTTPS.

Importing Frameworks

1) Extract “NielsenAppApi.Framework” from the Nielsen App SDK zip file and copy it to Frameworks folder of the Xcode project.

2) Import following frameworks and libraries into the Frameworks of the Xcode project before creating an instance of the Nielsen App SDK object.

  • UIKit.framework
  • Foundation.framework
  • AdSupport.framework
  • SystemConfiguration.framework
  • Security.framework
    • Nielsen Analytics framework makes use of a number of functions in this library.
  • AVFoundation.framework
    • This framework is mandatory for the iOS SDK version 5.1.1 to work.
  • CoreLocation.framework
  • CoreMedia.framework
  • NielsenAppApi.framework
  • libc++.tbd (as SDK contains Objective C++ source file)
    • Alternatively, include -lstdc++ in Build Settings → Other Linker Flag of the Xcode project

3) Add the code -#import NielsenAppApi/NielsenAppApi.h to the View Controller’s header file.

Note:

  • Nielsen App SDK is compatible with Apple iOS versions 9.0 and above.
  • The SDK uses the NSURLSession instead of the deprecated NSURLConnection.
  • All communications between the SDK and the Census (Collection Facility) use HTTPS


Using Swift

To import a set of Objective-C files in the same app target as your Swift code, you rely on an Objective-C bridging header to expose those files to Swift. Xcode offers to create this header file when you add a Swift file to an existing Objective-C app, or an Objective-C file to an existing Swift app.

Select File/New File/Objective-C File
Xcode will prompt you to create a bridging header.

bridgingheader 2x.png


Once this file has been created, you need to add the following:

#import <NielsenAppApi/NielsenAppApi.h>

Using Objective-C

Add the code

#import <NielsenAppApi/NielsenAppApi.h>
to the View Controller’s header file.


Step 2: Create SDK Instance

The latest version of the Nielsen App SDK allows instantiating multiple instances of the SDK object, which can be used simultaneously without any issue. The sharedInstance API that creates a singleton object was deprecated prior to version 5.1.1. (Version 4.0 for Android)

  • A maximum of four SDK instances per appid are supported. When a fifth SDK instance is launched, the SDK will return “nil” from initWithAppInfo:delegate:
  • When four SDK instances exist, you must destroy an old instance before creating a new one.

The following table contains the list of arguments that can be passed via the AppInfo JSON schema.

Parameter / Argument Description Source Required/Obligatory? Example
appid Unique id for the application assigned by Nielsen. It is GUID data type. Nielsen-specified PE392366B-F2C1-4BC4-AB62-A7DAFDC5172C
appname Name of the application Client-defined No Nielsen Sample App
appversion Current version of the app used Client-defined No "1.0.2"
nol_devDebug Enables Nielsen console logging. Only required for testing Nielsen-specified Optional "DEBUG"


Sample SDK Initialization Code

Swift

Swift 4.0 Example: NielsenInit.swift

class NielsenInit: NSObject {
    class func createNielsenAppApi(delegate: NielsenAppApiDelegate) -> NielsenAppApi?{
    let appInformation:[String: String] = [
           "appid": "PE392366B-F2C1-4BC4-AB62-A7DAFDC5172C",
            "appversion": "1.0",
            "appname": "app name here",
            "nol_devDebug": "DEBUG"
        ]
        return NielsenAppApi(appInfo:appInformation, delegate:delegate)
    }
}


Sample code using AVPlayer.
ViewController.swift

class ViewController: UIViewController, NielsenAppApiDelegate, AVPictureInPictureControllerDelegate, CLLocationManagerDelegate  {

    let avPlayerViewController = AVPlayerViewController()
    var avPlayer:AVPlayer?
    var nielsenAppApi: NielsenAppApi!

  override func viewDidLoad() {
        super.viewDidLoad()

        self.nielsenAppApi = NielsenInit.createNielsenAppApi(delegate: self)
        NSLog("Nielsen SDK initialized")

            }
  }

Objective C

Initialize the Nielsen App object within the viewDidLoad view controller delegate method using initWithAppInfo:delegate:

If App SDK is initialized using init or new methods, it will ignore the API calls resulting in no measurement. The SDK will not return any errors.

#import "NlsAppApiFactory.h"
#import <NielsenAppApi/NielsenAppApi.h>

@implementation NlsAppApiFactory

+ (NielsenAppApi *)createNielsenAppApiWithDelegate:(id<NielsenAppApiDelegate>)delegate;
{
    NSDictionary *appInformation = @{
                                     @"appid": "PE392366B-F2C1-4BC4-AB62-A7DAFDC5172C",
                                     @"appversion": "1.0",
                                     @"appname": "app name here",
                                     @"nol_devDebug": @"DEBUG"
                                     };
    return [[NielsenAppApi alloc] initWithAppInfo:appInformation delegate:delegate];
}
@end


The following would be the NlsAppApiFactory.h file:

#import <Foundation/Foundation.h>

@class NielsenAppApi;
@protocol NielsenAppApiDeligate;

@interface NlsAppApiFactory : NSObject

+ (NielsenAppAPI *) createNielsenAppApiWithDelegate:(id<NielsenAppApiDelegate>)delegate;

@end


APP SDK Error & Event Codes

To view the Error and Event codes for iOS and Android, please review the App SDK Event Code Reference page.

Life cycle of SDK instance

Life cycle of SDK instance includes four general states:

  1. Initial state – The SDK is not initialized and hence, not ready to process playing information. Once the SDK is moved out of this state, it needs instantiation of the new SDK instance in order to get the instance in the Initial state.
  2. Idle state – The SDK is initialized and is ready to process playing information. Once Initialized, the SDK instance is not processing any data, but is listening for the play event to occur.
  3. Processing state – The SDK instance is processing playing information. API calls "play" and "loadMetadata" move the SDK instance into this state. In this state, the SDK instance will be able to process the API calls (see below)
  4. Disabled state – The SDK instance is disabled and is not processing playing information. SDK instance moves into this state in one of the following scenarios.
    1. Initialization fails
    2. appDisableApi is called
@property (assign) BOOL appDisableApi;

Step 3: Create Metadata Objects

The parameters passed must be either a JSON formatted string or a NSDictionary object. The JSON passed in the SDK must be well-formed.

  • NSDictionary object
    • If an object of unexpected type is passed to the method, the error message will be logged.
    • If string has invalid JSON format, the error message will be logged.
  • JSON value must be string value.
    • This includes boolean and numeric values. For example, a value of true should be represented with "true", number value 123 should be "123".
    • All the Variable Names like appid, appname, dataSrc, title, type etc. are case-sensitive. Use the correct variable name as specified in the documentation.
  • JSON string can be prepared using either raw NSString or serialized NSDictionary.


Create channelName Metadata

channelName should remain constant throughout the completion of an episode or live stream.

Key Description Values Required
channelName Any string representing the channel/stream custom

Create Content Metadata

Content metadata should remain constant throughout the entirety of an episode/clip including when ads play.


program and title metadata values should be passed to SDK as UTF-8 strings.

Keys Description Values Required
type type of asset "content" for main content
assetid unique ID assigned to asset custom
(no Special Characters)
program name of program custom
title episode name custom
length length of content in seconds Length of content in seconds (86400 seconds for live stream (24/7). For Event-Live streams planned length. For VoD video length)
airdate the original date (local time with hh:mm:ss as 24h time stamp) content became available. This date does not change if the content is rebroadcasted on linear TV. YYYYMMDD HH:MI:SS (if not known set it to eg. "19700101 00:00:00")
isfullepisode full episode flag
  • "y", "yes", full episode (full content for a program)
  • "n", "no", non full episode (only one part of the entire content for a program , i.e. preview, sub-episodes)

adloadtype type of Ad load:
  • 1) Linear - matches TV ad load
  • 2) Dynamic - Dynamic Ad Insertion (DAI)

Create Ad Metadata (optional for DR)

The Ad Metadata (if applicable) should be passed for each individual ad.

Note: All metadata values should be passed as UTF-8 strings.

Keys Description Values Required
type type of Ad "preroll", "midroll", "postroll"
"ad" - If specific type can not be identified.
assetid unique ID assigned to Ad custom
(no Special Characters)

MetaData Example

Swift

     let channelInfo = [
        "channelName": "My Channel Name 1",
     ]

     let contentMetadata = [
       "assetid" : "unique_content_id",
        "type" : "content",
        "program" : "program name",
        "title" : "episode title",
        "length" : "length in seconds",
        "airdate" : "20200713 10:22:00",
        "isfullepisode" : "y",
        "adloadtype" : "2"
     ]

    let adMetadata = [
        "assetid" : "unique_postroll_ad_id",
        "type" : "postroll"
    ]

Objective C

NSDictionary  *channelInfo = @
{
  @"channelName":@"My Channel Name 1",
}

NSDictionary *contentMetadata = @
  {
  @"assetid" : "unique_content_id",
  @"type" : "content",
  @"program" : "program name",
  @"title" : "episode title",
  @"length" : "length in seconds",
  @"airdate" : "20161013 20:00:00",
  @"isfullepisode" : "y",
  @"adloadtype" : "2"
}

NSDictionary *adMetadata = @
  {
  @"assetid" : "unique_postroll_ad_id",
  @"type" : "postroll"
}


Step 4: Start the Measurement

Overview of SDK API Calls

play

The play method prepares the SDK for reporting once an asset has loaded and playback has begun. Use play to pass the channel descriptor information through channelName parameter when the user taps the Play button on the player. Call play only when initially starting the video.

Swift

self.nielsenAppApi?.play(channelInfo);

Objective C

nielsenAppApi play:(JSONObject channelInfo);


loadMetadata

Needs to be called at the beginning of each asset, pass JSON object for relevant content or ad. Make sure to pass as 1st loadMetadata for content at the begining of playlist - see below API call sequence examples.

Swift

self.nielsenAppApi?.loadMetadata(contentMetadata)

Objective C

nielsenAppApi loadMetadata:(id)contentMetadata;


playheadPosition

Pass playhead position every second during playback. for VOD: pass current position in seconds. for Live: current Unix timestamp (seconds since Jan-1-1970 UTC) - if it is possible to seek back in Live content, then pass related Unix time (not current). Pass whole number that increments only by 1 like 1,2,3..

{{{2}}}

Swift

self.nielsenAppApi?.playheadPosition(pos);

Objective C

nielsenAppApi playheadPosition: (long long) playheadPos


stop

Call when

  • content or ads complete playing
  • when a user pauses playback
  • upon any user interruption scenario - see bellow chapter Interruption scenario

Swift

self.nielsenAppApi?.stop

Objective C

nielsenAppApi stop


end

Call when the content asset completes playback. Stops measurement progress. {{ExampleCode|

|Objective C =

nielsenAppApi end;

|Swift =

self.nielsenAppApi?.end


Start the Measurement

In order to start the measurement, follow the 3 first steps below i.e. for Content without Ads. When terminating the Content playback call end to terminate the Content Measurement for the given asset.

Playlist Sample code Description
1. Start of stream play(channelName) channelName contains JSON metadata of channel/video name being played
loadMetadata(contentMetadataObject) contentMetadataObject contains the JSON metadata for the content being played
2. Content is playing playheadPosition(position) playheadPosition is position of the playhead while the content is being played
3. End of Stream end Content playback is completed.

Step 5: Stop/Resume the Measurement for video Playback Interruptions

As part of integrating Nielsen App SDK with the player application, the Audio / Video app developer needs to handle the following possible interruption scenarios:

  • Pause / Play
  • Network Loss (Wi-Fi / Airplane / Cellular)
  • Call Interrupt (SIM or Third party Skype / Hangout call)
  • Alarm Interrupt
  • Content Buffering
  • Device Lock / Unlock (Video players only, not for Audio players)
  • App going in the Background/Foreground (Video players only, not for Audio players)
  • Channel / Station Change Scenario
  • Unplugging of headphone

In case of encountering one of the above interruptions, the player application needs to

  • Call stop immediately (except when content is buffering) and withhold sending playhead position.
  • Start sending pings – loadMetadata and playheadPosition for the new viewing session, once the playback resumes.

Please see the Digital Measurement FAQ for more details

SDK Integration Architecture Diagram

For Content Playback

SDK Integration Architecture Diagram - Content

For Ad Playback

SDK Integration Architecture Diagram - Ad

Privacy

The privacy section will be added soon.

Step 7 : Test your player by yourself

Guide

1. Connect your PC and test device (tablet or phone) via same router.
2. PC side: run Proxy sw (like Charles) and get local IP
3. Test device: modify Wifi setting to pass through Proxy IP from add 2
4. Test device: run your player, launch video
5. PC side: filter traffic by "nmr" and confirm presence of GN pings


Example of GN ping

Step 8 : Provide your app for certification

Once ready please send your application to Nielsen local staff for certification.

Step 9 : Going Live

After the integration has been certified (but not prior that), disable debug logging by deleting {nol_sdkDebug: "DEBUG"} from initialization call - see Step 2.