Identity Transfer APIs
MXOIdentityTransferConfiguration
The configuration object for MXO SDK identity transfer.
Property | Type | Description |
---|---|---|
disableIdentityTransfer | BOOL | Set to true to disable transfer of identity to outbound locations. |
includeList | NSArray<MXOIdentityTransferUriMatcher *> | The list of allowed URIs for identity transfer. |
excludeList | NSArray<MXOIdentityTransferUriMatcher *> | The list of denied URIs for identity transfer. |
Create an instance using the Builder as shown below:
MXOIdentityTransferUriMatcher
Represents the different ways the MXO SDK will attempt to include or exclude URIs from having a tid
query parameter and value appended, IE identity transfer.
Property | Type | Description |
---|---|---|
value | id | The value of the URI matcher. |
If used in either excludeList
or includeList
, then only exact values (as strings) will be compared.
Property | Type | Description |
---|---|---|
url | NSURL | The URL to match. |
error | NSError | Used to handle errors. |
Uri
matcher when including or excluding links from tracking.If used in either excludeList
or includeList
, then the URI values will be matched to the regex provided.
Property | Type | Description |
---|---|---|
regex | NSRegularExpression | The regex to match against the string representation of the URL. |
error | NSError | Used to handle errors. |