How to open application using URL?

43,890

Solution 1

Use Universal Links

But it will only work with Public website URL, that should be accessible to Apple Servers.

The only thing you need is to have https server and access to upload a associated domains file.

When you support universal links, iOS 9 users can tap a link to your website and get seamlessly redirected to your installed app without going through Safari. If your app isn’t installed, tapping a link to your website opens your website in Safari.

Apple Link : => Support Universal Links

Follow this nice tutorial : => Universal Link

Solution 2

Add Innformation In Info.Plist File

In Url Identifier Enter Your Package Name && Url schemes add Application Name

  1. In Url Identifier Enter Your Package Name && Url schemes add Application Name
  2. open link like schemesname:// Then Open Your App
Share:
43,890
dipen gtl
Author by

dipen gtl

Updated on March 11, 2020

Comments

  • dipen gtl
    dipen gtl about 4 years

    I have implemented all the required things but had no success. I want to open the application from browser - but not with just URL schema like a "callback".

    I have something like "http://11.11.21.114:8081/signup/callback?signupCode=123?id=20" so how can I identify this url to open my application?