showing results for - "receive parameters from firebase dynamic links using react native firebase"
Paulina
05 Jan 2020
1Please read carefully beacuse i waste my 3 to 4 to understand the the think
2
3:(
4  
5)============Now follow this ==============
6
7in react native firebase dynamic  linking
8
9Follow the following link to setup the dynamic linking with react native 
10
11https://rnfirebase.io/dynamic-links/usage
12
13Steps are following
14
15
161 Set the short URL link
17
182 Set the dynamic link
19A dynamic link is a direct link in your app that works regardless of whether the app is installed or not.
20On a desktop it will open the URL of the direct link. 
21
22
23and the main point is:
24
25Suppose you created a domain for dynamic link from console:
26https://myapp.page.link/abc
27
28Now you can create a dynamic link which opens
29the deep linked content on your app.
30The dynamic link can take in only specific parameters as mentioned here.
31However you can pass your parameters to your deep link,
32  
33 
34  
35so in my ( secound step)  i can pass n number of parms for my app
36
37like this
38
39 https://example.com/offer?offerid=123456 .
40
41so when you open a link in app like -> https://myapp.page.link/abc
42
43it will open the app can you will recevie the link in app like this 
44
45{"minimumAppVersion": null, "url": " https://example.com/offer?offerid=123456"}
46
47so now you have the parms do whatever you want to do
48