iOSオーガニック検索アトリビューション
概要:「オーガニック検索の計測」機能を使用して、Web上でオーガニック検索をした後に アプリと再度エンゲージした既存ユーザーのトラフィックを計測しましょう。
概要
App owners using Universal Links for deep linking (without OneLink), who have a domain associated with their app can attribute sessions initiated via this domain using the appendParametersToDeepLinkingURL
。
前提条件
- 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
更新済 3か月前