Replies: 1 comment 1 reply
-
Apologies - this isn't a feature I use personally so I'm not that familiar with it, and no one else appears available to answer questions. It's not really react-native-firebase specific though - I encourage you to post on stackoverflow where the upstream Firebase team offers support if you tag up the question well |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
Hi!
I posted a much longer question earlier this week. I'm just looking for a quick sanity check:
Is it normal for my project id to be included in the url that I receive from a sign-in link?
The url received in the Email:
Breaking this huge url down:
https://pdpip.er/?link=
So far so good, this looks like my regular dynamic links
...
https://piedpiper-c3xa9.firebaseapp.com/__/auth/action
<-------------Uh oh, what's my firebase project id doing here? Is that normal?
...
apiKey%SOME_API_KEY%26mode%3DsignIn%26oobCode%3DSOME_OOB_CODE%26
Bunch of important stuff
...
continueUrl%3Dhttps://piedpiper.com/auth/confirm-email?email%253Dtom%2540gmail.com
<--------------This is the deepLink I want! This is where I'll be navigating to in my app
...
%26lang%3Den&apn=com.piedpiper&amv=1.66.2&ibi=com.piedpiper.ios&
This looks like some iOS specific stuff
...
ifl=https://piedpiper-c3xa9.firebaseapp.com/__/auth/action......
The rest is simply repeating
This is my project settings:

Currently I'm doing a big hack on the receiving end to parse the continueUrl out, then append the API and OobCode query params back on. And the behaviour when connected to the firebase emulator is completely different, so I need to handle that differently. I've got it working but it's quite horrible.
Beta Was this translation helpful? Give feedback.
All reactions