So, we have a web app up and running and now have decided to develop a mobile app for our service which used our web app logic for the most part. In Reset Password part, when user request, we send a Reset Password Link to his/her email which is like: https://myservice.com/resetpassword/someToken
.
To use this in our mobile app, I have followed this tutorial and in Android it will open the mobile app and I have access to the URL which is fine, but the problem is it will listen to all https://
requests, which is not what is required.
Is there any way to listen to HTTPS requests and only open the app if the URL contain myservice.com/resetpassword/
?
I checked other posts regarding deep linking and none of them covered this scenario. Any help or tips?