Organic search attribution
At a glance: Attribute existing users who re-engage with your app after an organic web search.
This page has a newer version
개요
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 | A domain name to identify URLs |
Map<String, String> | parameters | Parameters to append to the deeplink URL after it passed validation |
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
In the example above, the attribution URL sent to AppsFlyer servers is:
example.com?pid=exampleDomain&is_retargeting=true
최신 데이터 10일 전