Replies: 1 comment 2 replies
-
I reformatted your question with code formatting markdown chunks for the json and javascript, much easier to read (triple-backticks and code language modifier is the trick) You may be encoding it incorrectly during construction, hard to say Also, I implemented this just recently but you have it with 14.11.0: https://firebase.google.com/docs/dynamic-links/debug#ios_self-diagnostic_tool ...may help? Be careful with the encoding, you don't show how you do it so your snippet is not complete, you need to make sure it is urlencoded |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all
I'm meeting with a weird bug, can anyone help me with this -
In IOS, when you share a class via FB messenger and when a user clicks on the link -
First time, it will take you to App Store saying the app is no longer available.
Second time, it will take you to the Home screen of the App (not to the class).
I've checked the logs, the link which we're sending is fine but the link which is taking the user back to the app is coming as NULL.
And this particular thing is happening only in IOS FB messenger.
The packages which I've used are -
The Firebase Dynamic Link which I'm sending to FB is like this - "https://<APP_NAME>.page.link/qYJtE7RDqitreexo7" . But the link which is coming back to the app in "handleDynamicLink" is like this - "https://<APP_NAME>.page.link/share". It should be like this - "https://<APP_NAME>.page.link/share?qYJtE7RDqitreexo7".
These are the functions which I'm using in the ComponentDidMount() -
Beta Was this translation helpful? Give feedback.
All reactions