In our case if the app isn't installed we need to redirect user to web app and not to store say we receive a mail for forgot password but the app is not installed redirect them to web app's forgot password url else mobile app's forgot password screen how can we do that in expo without ejecting
I haven't tried the firebase dynamic link, but they claim it simply redirects users to the app store.
Related
I want to open TikTok app with React Native in a specific account.
I use
Linking.openURL('tiktok://#username')
Even though the app is launching it shows the home page.
I get the username from the website url: eg. https://www.tiktok.com/#khaby.lame
is there any way to redirect to our react native app when user clicks an existing app (example: if a user clicks facebook app it should redirect to our react native app)?
You can open your app depending upon some url. However, user has to click the link. Otherwise no, unless the "other app" is written by you!
I'm trying to set up a Login using Google.useAuthRequest from expo-auth-session. It works fine in the Expo Go app. The problem is that when I'm setting the redirect URI in the GoogleClouth OAuth credentials it asks me to put the expo project link which looks like this: exp://exp.host/#community/with-webbrowser-redirect. The problem is that it is not allowed because it doesn't start with "HTTP or HTTPS" and because de #community is my expo profile name so to try the login in my app I have to be logged in to expo in my visual Studio Code.
How can I get a public URL to set the OAuth credential and redirect Google login to my app without being logged in to expo?
I use react-native-simple-auth in my project but i can login twitter in web.I want to login with twitter app instead of safari view in react native. How to do this? Any Idea?
If you have installed Twitter in the phone use this:
Linking.openURL('twitter://app')
This is the snippet that open an external app. It open but you can't pass params to log in. Only open the app and, if you are logged, you will automatically enter to the app logged, else, just will open Login view.
Is it possible configure my firebase project so that if a user is on mobile and they need to log in, they are redirected to the facebook mobile app instead of the facebook website in their browser?. I thought iOS would automatically intercept the link but it just takes you to the facebook site. Users with the app installed might not already be logged in through their browser since they are used to using the app and i'd like to avoid the extra login step for them