Reputation: 245
I have an iOS app and in info.plist I set a custom URL scheme so if someone opens up a URL starting with that scheme (protocol), my application gets opened and show the user, the proper content.
BTW I want to send users email containing a link with my scheme, so if they tap on the link they can see something in the application.
The problem is when I send the email some email applications make the link disabled because of the unknown scheme.
My question is how I could somehow solve the problem? or if it's possible to offer my app when a link with http protocol gets clicked? Then I could use http instead of custom scheme and afterward the links don't get disabled because of unknown protocol.
Upvotes: 2
Views: 267
Reputation: 454
HTTP Link -> Opened in Safari (most likely) -> Server redirects to Custom URL Scheme.
Upvotes: 1