The benefit of custom URL scheme is that you canProgramOpen the application through this URL. For example, if application A registers a URL scheme: MyApp, you can use
There is a small difference between iOS and Android. In iOS, if the system registers URL scheme and installs that application, you can start the application through the web page above, if you have not registered or installed the application, it will have no effect (the URL scheme you registered cannot be http: // XXX ). Register URL scheme in the Android system and install the application. You can start the application through the web page above. If the application is not registered or not installed, there will be no effect; if you have registered an http: // XXX, a dialog box will pop up asking you to select whether to open the webpage or program.
In iOS, URL scheme such as http: // XXX cannot be registered, but android can.