Open installed PWA from external url

后端 未结 2 872
我在风中等你
我在风中等你 2020-12-01 12:27

Is there any method to open website (PWA) urls in the installed PWA in iOS- Safari?

Use case: I\'m sending email links to login in my PWA, how can I make this url\'

相关标签:
2条回答
  • 2020-12-01 12:44

    For iOS, there is actually a very unknown way which you can install a .mobileconfig profile which installs a web clip (or multiple web clips if you like).

    This will run your website in fullscreen and is very similar to how iOS PWAs work. You can also link to it online or send it as an Email attachment for your users to install.

    Just make sure you add this for the webpage to open fullscreen:

    <key>FullScreen</key>
    <true/>
    

    You can read more about creating your own from scratch here:

    https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/iPhoneOTAConfiguration/ConfigurationProfileExamples/ConfigurationProfileExamples.html

    or if you have a Mac you can get the "Apple Configurator 2" App:

    https://apps.apple.com/us/app/apple-configurator-2/id1037126344

    or you can take the easy route and use a generator here if you don't have a Mac:

    https://webclip.glitch.me/

    0 讨论(0)
  • 2020-12-01 12:47

    If you are using Chrome in Android or any of the desktop OS, that would be the default behavior.

    Check on "Android intent filter" in this link.

    This feature is not supported in iOS yet for PWA apps(created using Safari- the only option for iOS as of June-2018).See "What PWAs can do on Android and not on iOS" section last point.

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