Is it possible to pass parameters when opening an app through web via deep link on ios and andriod?
Asked
Active
Viewed 54 times
0
-
Also branch.io is a useful tool, but not required. – xdumaine Jan 06 '23 at 15:53
1 Answers
0
You can pass parameters via URL parameters or in the path itself.
https://www.myapp.com/path/5/anotherpath/2
https://www.myapp.com/path/?parameter1=5¶meter2=2
Then you can parse in the receiving Activity. Use helper methods like getQueryParameter() and getPathSegments().

Matthew Vines
- 82
- 6