Reputation: 125
I'm using REST API provided by firebase for dynamic link generation. How do I create a link that opens up app and include app specific variables.
Upvotes: 0
Views: 1192
Reputation: 13613
It's the same value. If the app is not installed, link
will be opened in the browser (unless overridden by the ifl
or afl
params). If the app IS installed, it will launch and you'll get the contents of link
delivered to you, which you must then parse out and handle as necessary to accomplish deep linking to content inside the app.
See here for an implemented example, and a comparison with the simpler 'key:value' approach we use at Branch.io (full disclosure: I'm on the Branch team).
Upvotes: 1