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
Tipo | Nome | Descrição |
---|---|---|
NSString | contains | Um nome de domínio para identificar URLs |
NSDictionary | parameters | Parâ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
Atualizado cerca de 1 ano atrás