Reputation: 105
I´m having problems with a deep-link (using appending query parameters) in a facebook post. When I click, the app just opens but the data from appended parameters is not returned in the referringParams when i have the app already installed (Android App). I tried the solution below without success..
https://github.com/BranchMetrics/Android-Deferred-Deep-Linking-SDK#important-migration-to-v145
The same cenario works for ios.
Does anyone know how can i resolve this issue?
Upvotes: 0
Views: 643
Reputation: 517
This is likely an issue with the way you've set up sessions. I recommend you do the following:
onCreate
, you're calling Branch.getAutoInstance(this)
.Branch.initSession
inside the deeplink activity that a user goes into from Facebook.onNewIntent
, make sure that there's a ?link_id
appended to the end, as Branch wont know which link to return without that.Upvotes: 1