Unified Deep Linking (UDL)
Proteção de privacidade do UDL
For new users, the UDL method only returns parameters relevant to deferred deep linking:
deep_link_value
anddeep_link_sub1
todeep_link_sub10
. If you try to get any other parameters (media_source
,campaign
,af_sub1-5
, etc.), they returnnull
.
fluxo UDL
- O SDK é acionado por:
- Deferred Deep Linking - usando uma API dedicada
- Direct Deep Linking - acionado pelo SO via Android App Link, iOS Universal Links ou esquema de URI.
- The SDK triggers the
OnDeepLink
, e passa o objeto do resultado do deep link para o usuário. - The
OnDeepLink
usa o resultado do deep link que incluideep_link_value
e outros parâmetros para criar a experiência personalizada para os usuários, que é o principal objetivo do OneLink.
Confira os documentos de Unified Deep Linking para Android e iOS.
considerações
- Requer AppsFlyer Android SDK V6.1.3 ou posterior.
- Não é compatível com campanhas SRN.
- For new users, the UDL method only returns parameters relevant to deferred deep linking:
deep_link_value
anddeep_link_sub1-10
. Se você tentar obter quaisquer outros parâmetros (media_source, campanha, af_sub1-5, etc.), eles retornarãonull
. onAppOpenAttribution
não será chamado. Todo o código deve migrar paraOnDeepLink
.OnDeepLink
deve ser chamado depois deinitSDK
.AppsFlyer.cs
deve ser anexado ao objeto do jogo.
Implementação
- Anexe
AppsFlyer.cs
ao objeto do jogo com o código de inicialização da AppsFlyer. (AppsFlyerObject) - Call initSDK with the
this
parameter in order for theOnDeepLinkReceived
callback to be invoked:AppsFlyer.initSDK("devkey", "appID", this);
- Atribua
OnDeepLink
toAppsFlyer.OnDeepLinkReceived
no payload deStart()
AppsFlyer.OnDeepLinkReceived += OnDeepLink;
- Depois de
initSDK()
implementeOnDeepLink
.
Exemplo
using AppsFlyerSDK;
public class AppsFlyerObjectScript : MonoBehaviour
{
void Start()
{
AppsFlyer.initSDK("devkey", "appID", this);
AppsFlyer.OnDeepLinkReceived += OnDeepLink;
AppsFlyer.startSDK();
}
void OnDeepLink(object sender, EventArgs args)
{
var deepLinkEventArgs = args as DeepLinkEventsArgs;
switch (deepLinkEventArgs.status)
{
case DeepLinkStatus.FOUND:
if (deepLinkEventArgs.isDeferred())
{
AppsFlyer.AFLog("OnDeepLink", "This is a deferred deep link");
}
else
{
AppsFlyer.AFLog("OnDeepLink", "This is a direct deep link");
}
// deepLinkParamsDictionary contains all the deep link parameters as keys
Dictionary<string, object> deepLinkParamsDictionary = null;
#if UNITY_IOS && !UNITY_EDITOR
if (deepLinkEventArgs.deepLink.ContainsKey("click_event") && deepLinkEventArgs.deepLink["click_event"] != null)
{
deepLinkParamsDictionary = deepLinkEventArgs.deepLink["click_event"] as Dictionary<string, object>;
}
#elif UNITY_ANDROID && !UNITY_EDITOR
deepLinkParamsDictionary = deepLinkEventArgs.deepLink;
#endif
break;
case DeepLinkStatus.NOT_FOUND:
AppsFlyer.AFLog("OnDeepLink", "Deep link not found");
break;
default:
AppsFlyer.AFLog("OnDeepLink", "Deep link error");
break;
}
}
}
Atualizado 4 meses atrás