2

I have used branch.io deeplinking for sharing from mobile.I have a web app also for the same mobile application which uses another method for sharing. I would like to open my application from iOS device, when a link shared from web app is clicked from mobile. I can successfully redirect to a web app page when a link shared from mobile is clicked from desktop. Please help.

akhiljij
  • 287
  • 1
  • 9

1 Answers1

1

Alex from Branch.io here: to make this work, the sharing links from your web app should also be Branch links. This is what will let your mobile app open if a link is clicked on a mobile device. You can think of Branch as a router that takes incoming visitors and forwards them on to the appropriate destination depending on what device type they are using.

enter image description here

The Branch web SDK makes this extremely easy to implement. You should be able to use that as a drop-in replacement for whatever existing sharing method you currently use.

Alex Bauer
  • 13,147
  • 1
  • 27
  • 44
  • How to make the iOS device identify the link shared from web should open the ios application? – akhiljij Dec 16 '16 at 05:09
  • There are a number of ways this is done, mainly via Universal Links and occasionally via URI schemes. If you have completed the [Branch onboarding steps](https://dev.branch.io/getting-started/), this should all be taken care of for you. – Alex Bauer Dec 16 '16 at 07:23