Launching app from sms link or email link

前端 未结 2 1075
夕颜
夕颜 2020-12-11 15:21

I have the requirement to launch an app when an sms or email link is followed. I have already been reading about URL schemes and already test that and it works, but the prob

相关标签:
2条回答
  • 2020-12-11 15:56

    I would insert a link to the website in SMS body. Then I would write a script on the website which will either open a download link or open the app

    This answer will solve your problem

    0 讨论(0)
  • 2020-12-11 16:16

    It can be done. The way I would structure it is by having a redirect from a server you control.

    1. You send the user a link that points to your server.
    2. You try to launch your app using the custom URL scheme.
    3. If it fails, you redirect the user to the app store so they can download your app.

    Here is an interesting question with several ways to check if the launch attempted via your custom URL was successful.

    0 讨论(0)
提交回复
热议问题