Mohsen Asfia
Mohsen Asfia

Reputation: 245

Sending a link with custom OpenURL scheme to others gets disabled by some email applications

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

Answers (1)

NinjaLikesCheez
NinjaLikesCheez

Reputation: 454

HTTP Link -> Opened in Safari (most likely) -> Server redirects to Custom URL Scheme.

Upvotes: 1

Related Questions