Example of writing mobile H5 to invoke APP (IOS, Android)

Example of writing mobile H5 to invoke APP (IOS, Android)

iOS

1. URL scheme

This solution is basically for browsers other than WeChat, QQ built-in browser, QQ browser, etc. You can get a scheme from native and put it in the a tag or jump to location.href.

Use an iframe to jump to the page. If there is a scheme, if not, it will trigger the timer to jump to the download address. However, this method in iOS will prompt you twice when there is no app.

 var openApp = function (src) {
        // Try to open the APP through iframe. If it can be opened normally, it will switch directly to the APP and automatically block the default behavior of the a tag. // Otherwise, open the href link of the a tag const ifr = document.createElement('iframe');
        ifr.src = src;
        ifr.style.display = 'none';
        document.body.appendChild(ifr);
        var time = +new Date()
        window.setTimeout(() => {
          document.body.removeChild(ifr);
          if ((+new Date()-openTime>2500)){
            window.location = 'APP Store download address'
          }
        }, 600);
      };

2. Universal Link (ios)

This is a feature introduced by iOS9. If your app supports Universal Links, you can easily launch the app through a traditional HTTP link (if your app is already installed on the iOS device, no additional judgment is required), or open a web page (if your app is not installed on the iOS device). Perhaps it can be explained more simply. Before iOS 9, for the need to wake up the APP from various browsers, Safari, UIWebView or WKWebView, we usually can only use scheme.

window.location.href = "Universal Link given by APP"

Summarize

Compatible writing

if (isGreaterThan9){
   window.location.href = "Universal Link given by APP";
   return;
}
openApp(src)

android

Similar methods

 if (openApp('url scheme url')) {
            openApp('url scheme url');
          } else {
            setTimeout(() => {
              window.location.href = 'APP Market Download Address'; // Usually Google, different app stores have different addresses}, 600);
          }
      }

Summarize

This is the end of this article about mobile H5 wake-up APP. For more relevant mobile H5 wake-up APP content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of H5 wake-up APP implementation methods and points for attention

<<:  Teach you how to enable the Linux subsystem of Win10 (with detailed pictures and text)

>>:  A brief understanding of the three principles of adding MySQL indexes

Recommend

Detailed explanation of InnoDB storage files in MySQL

Physically speaking, an InnoDB table consists of ...

In-depth analysis of MySQL lock blocking

In daily maintenance, threads are often blocked, ...

Linux uses dual network card bond and screwdriver interface

What is bond NIC bond is a technology that is com...

Detailed explanation of angular content projection

Table of contents Single content projection Multi...

How to implement the Vue mouse wheel scrolling switching routing effect

A root routing component (the root routing compon...

MySQL5.7.27-winx64 version win10 download and installation tutorial diagram

MySQL 5.7 installation We are learning MySQL data...

Why is UTF-8 not recommended in MySQL?

I recently encountered a bug where I was trying t...

Div nested html without iframe

Recently, when doing homework, I needed to nest a ...

Detailed explanation of scheduled tasks and delayed tasks under Linux

at at + time at 17:23 at> touch /mnt/file{1..9...

React gets input value and submits 2 methods examples

Method 1: Use the target event attribute of the E...

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

How to dynamically add a volume to a running Docker container

Someone asked me before whether it is possible to...

MySQL data analysis storage engine example explanation

Table of contents 1. Introduce cases 2. View the ...