Reputation: 245
When I forgot my password, if a reset it, I receive a link by SMS. (url: http://www.example/forgotten-password/[token]
My goal is to open my iOS app when I click on this link. But currently, my searching display only custom scheme like myapp://....
Do you know if I can use http scheme for deep linking?
Upvotes: 1
Views: 3632
Reputation: 991
Implement a custom scheme like myapp://. Inter-App Communication
In your webpage (example url http://www.example/forgotten-password/[token]), just redirect the user to your custom scheme (myapp://).
This way the user will click the link he received by SMS. It will open Safari and the user will automatically be redirected to your app.
Upvotes: 1