optOutURL: Difference between revisions

From Engineering Client Portal

(commented out syntax)
(updated things)
 
(3 intermediate revisions by the same user not shown)
Line 9: Line 9:
</syntaxhighlight> -->
</syntaxhighlight> -->


== Request / Response Format ==
 
Example Code
<syntaxhighlight lang="objective-c">
nlsAppApiMeter = [[NielsenAppApi alloc]] initWithAppInfo:appInformation delegate:self];
...
self.webAddress = nlsAppApiMeter.optOutURL;
</syntaxhighlight>
 
 
<!-- == Request / Response Format ==
JSON String
JSON String
<syntaxhighlight lang="objective-c">
<syntaxhighlight lang="objective-c">
NSString *webAddress = [nielsenMeter optOutURLString];
NSString *webAddress = [nielsenMeter optOutURLString];
</syntaxhighlight>
</syntaxhighlight> -->


== Input Parameters ==
<!-- == Input Parameters ==
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 21: Line 30:
|-
|-
| None ||  
| None ||  
|}
|} -->


== Output Parameters ==
== Output Parameters ==
Line 28: Line 37:
! Return value !! Description
! Return value !! Description
|-
|-
| URL|| Returns a NSString object with the URL of the Nielsen opt-out page. In special cases, it is possible that a nil value can be returned.
| URL|| Returns Nielsen Privacy Page URL for Nielsen opt-out. In special cases, it is possible that a nil value can be returned.
|}
|}


== Notes ==
== Notes ==
Get the URL of the web page that is used to give the user a chance to opt out from the Nielsen measurement.
Retrieve the Nielsen Privacy Page URL from a property of the SDK object which instructs users on how to Opt-Out of Nielsen measurement.

Latest revision as of 22:21, 20 September 2017

Engineering Portal breadcrumbArrow.png Digital breadcrumbArrow.png iOS SDK API Reference breadcrumbArrow.png optOutURL
Use this property to query the Nielsen Analytics framework for the Nielsen opt-out web page.


Example Code

nlsAppApiMeter = [[NielsenAppApi alloc]] initWithAppInfo:appInformation delegate:self];
...
self.webAddress = nlsAppApiMeter.optOutURL;



Output Parameters

Return value Description
URL Returns Nielsen Privacy Page URL for Nielsen opt-out. In special cases, it is possible that a nil value can be returned.

Notes

Retrieve the Nielsen Privacy Page URL from a property of the SDK object which instructs users on how to Opt-Out of Nielsen measurement.