optOutURL: Difference between revisions
From Engineering Client Portal
(Created page with "{{Breadcrumb|}} {{Breadcrumb|Digital}} {{Breadcrumb|iOS SDK API Reference}} {{CurrentBreadcrumb}} Category:Digital Category:iOS SDK API Reference Use this property to...") |
RyanCarlson (talk | contribs) (updated things) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
Use this property to query the Nielsen Analytics framework for the Nielsen opt-out web page. | Use this property to query the Nielsen Analytics framework for the Nielsen opt-out web page. | ||
== Syntax == | <!-- == Syntax == | ||
<syntaxhighlight lang="objective-c"> | <syntaxhighlight lang="objective-c"> | ||
@property (readonly) NSString *optOutURL; | @property (readonly) NSString *optOutURL; | ||
</syntaxhighlight> --> | |||
Example Code | |||
<syntaxhighlight lang="objective-c"> | |||
nlsAppApiMeter = [[NielsenAppApi alloc]] initWithAppInfo:appInformation delegate:self]; | |||
... | |||
self.webAddress = nlsAppApiMeter.optOutURL; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== Request / Response Format == | |||
<!-- == 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 | | 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 == | ||
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
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.