Androidオーガニック検索アトリビューション
概要
App owners using Android App Links for deep linking (without OneLink), who have a domain associated with their app can attribute sessions initiated via this domain using the appendParametersToDeepLinkingURL
。
前提条件
- Android SDK 6.0.1以降の実装
- Call this method before calling
start
.
使用料
Input parameters
タイプ | 名前 | 詳細 |
---|---|---|
String | contains | URLを識別するためのドメイン名 |
Map<String, String> | parameters | 検証に成功後、ディープリンクURLに追加するパラメータ |
Provide the following parameters in the parameters
Map
:
pid
is_retargeting=true
Usage example
HashMap<String, String> urlParameters = new HashMap<>();
parameters.put("pid", "exampleDomain"); // Required
parameters.put("is_retargeting", "true"); // Required
AppsFlyerLib.getInstance().appendParametersToDeepLinkingURL("example.com", parameters);
AppsFlyerLib.getInstance().appendParametersToDeepLinkingURL("example.com",
mapOf("pid" to "exampleDomain", "is_retargeting" to "true")) // Required
上記の例では、AppsFlyerサーバーに送信されるアトリビューションURLは次のとおりです:
example.com?pid=exampleDomain&is_retargeting=true
更新済 21日