I have a email to reset password, on click on that email it should redirect to my app installed on my iphone. I am using url schemes for that. How to direct that reset url to the app to reset password controller.
Asked
Active
Viewed 946 times
1 Answers
0
If your app is opened when you click the URL then all you may want to do next is just parsing that URL to decide which is the target screen to navigate to. Then you can easily use presentational or pushing style to route users to the page you want.

congnd
- 1,168
- 8
- 13
-
Asking to redirect the url to app. @congnd – Manish Kumar Aug 09 '20 at 06:07
-
In order to make your app be opened when tapping custom scheme URLs, you have to register your desired schemes in the Info.plist. – congnd Aug 09 '20 at 06:17
-
How to that thing in proper manner, I registered there but not not working properly. @congnd – Manish Kumar Aug 09 '20 at 06:26
-
You can follow this: https://github.com/kickstarter/ios-oss/blob/6ed3ceaad2daaf54d9a407ba832c5f393a00890e/Kickstarter-iOS/Info.plist And search for the `CFBundleURLSchemes` – congnd Aug 09 '20 at 06:35