iOS: Set parameters based on the clicked URL domain

At a glance: Set attribution parameters based on click URL

Visão Geral

Organic search attribution can be set from AppsFlyer without updating the SDK. Learn more.

Use o appendParametersToDeepLinkingURL method to dynamically set the media source and other parameters based on the clicked URL domain name.

Pré-requisitos

  • iOS SDK 6.0.8+.
  • Chame este método antes de chamar start.

Uso

Input parameters

TipoNomeDescrição
NSStringcontainsUm nome de domínio para identificar URLs
NSDictionaryparametersParâmetros a serem anexados ao URL do deep link após a validação

Forneça os seguintes parâmetros no parameters Map:

  • pid
  • is_retargeting=true

Usage example

AppsFlyerLib.shared().appendParametersToDeeplinkURL(contains: "example.com", parameters: ["pid" : "exampleDomain", "is_retargeting" : true])
[[AppsFlyerLib shared] appendParametersToDeepLinkingURLWithString:@"example.com" @{@"pid" : @"exampleDomain", @"is_retargeting" : @YES}]

No exemplo acima, a URL de atribuição enviada aos servidores da AppsFlyer é:

example.com?pid=exampleDomain&is_retargeting=true