Sweet Dream
Sweet Dream

Reputation: 21

How to open other app installed on IOS from HTML run in Safari

Is there a way to open any app installed on Iphone/Ipad? is there a way to open that app from HTML run in Safari. Please help me. Thank you very much!

Upvotes: 1

Views: 6733

Answers (2)

Mayank Jain
Mayank Jain

Reputation: 5754

Yes you can, If you know the URL scheme of that app.

For eg. URL scheme of whatsapp is whatsapp:// so you can open whatsapp from safari by typing whatsapp:// in your browser.

You can also set URL scheme to your app so that any one can open your app from browser by entering URL.

Check this great tutorial If you want to create a custom URL scheme for your app.

Upvotes: 1

rckoenes
rckoenes

Reputation: 69449

Yes, but only if you know the apps URL scheme.

Like for example, Facebook App registers the app URL fb:// so if you create a herf you can open the Facebook app:

<a href="fb://">Launch Facebook app</a>

Upvotes: 1

Related Questions