iOS: Set parameters based on the clicked URL domain
At a glance: Set attribution parameters based on click URL
概要
Organic search attribution can be set from AppsFlyer without updating the SDK. Learn more.
次を使用してください: appendParametersToDeepLinkingURL
method to dynamically set the media source and other parameters based on the clicked URL domain name.
前提条件
- iOS SDK 6.0.8+.
- Call this method before calling
start
.
使用料
Input parameters
タイプ | 名前 | 詳細 |
---|---|---|
NSString | contains | URLを識別するためのドメイン名 |
NSDictionary | parameters | 検証に成功後、ディープリンクURLに追加するパラメータ |
Provide the following parameters in the 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}]
上記の例では、AppsFlyerサーバーに送信されるアトリビューションURLは次のとおりです:
example.com?pid=exampleDomain&is_retargeting=true
更新済 1か月前