-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS Deferred Deep Link Issue: Unable to Retrieve Deep Link Value #307
Comments
👋 Hi @nitaking and Thank you for reaching out to us.
|
Hello @nitaking I have the same issue on iOS. Please let me know how it turned out for you, in turn, I’ll also let you know if everything works out |
I have same problem in IOS. |
I have the same problem in iOS and Android. |
Hello @nitaking , |
I was able to get the callback from Steps to trigger
|
@justatipfromthedeadsequoiatree Thank you for description. |
hi @SuhwanCha Q: So do you mean you can get data from onDeepLinking() on IOS, data printed on my IDE console
Q: even in deferred deeplink? data printed inside my IDE console
hope it helps, regards |
Thank you @justatipfromthedeadsequoiatree, I can get data from
and onDeepLinking
But data such as deep_link_value is missing.
|
hi @SuhwanCha i have updated my post on Maybe you need to check back your configuration on appsflyer website? |
For anyone struggling with this, the documentation isn't great, but you can't use custom variables, you need to use deep_link_value and/or deep_link_sub1, deep_link_sub2, deep_link_sub3.... etc to deep_link_sub10 You don't need to use onInstallConversionData, just use the onDeepLink |
Objective
I am currently encountering an issue with retrieving deep link values via deferred deep links on iOS. According to the AppsFlyer SDK documentation for Flutter, the SDK should be triggered by either iOS Universal Links/Android App Links for deep linking or deferred deep links.
My question revolves around which listener should be used for deferred deep links:
onInstallConversionData
oronDeepLinking
? Based on my understanding, utilizing Unified Deep Linking (UDL) implies thatonDeepLinking
should be capable of handling all related events. However, in my application, theonDeepLinking
listener either does not trigger, or it fails to retrieve thedeep_linking_value
.I am wondering if there might be an issue with how I've implemented the SDK or if there are specific aspects I should verify.
Points of Uncertainty
onDeepLinking
callback is not being listened to.onInstallConversionData
does trigger for deferred deep links, it fails to capture thedeep_linking_value
.Configuration and Background
onDeepLinking
andonInstallConversionData
are called prior toinitSdk
.deep_linking_value
is successfully retrieved.Any insights or guidance on resolving these issues would be greatly appreciated.
The text was updated successfully, but these errors were encountered: