English
AppLink Applications
About 315 wordsAbout 1 min
2026-04-08
The AppLink protocol can be opened from outside the Fxiaoke app. We recommend using the approaches described in this document when integrating AppLink.
Limitations
- In many scenarios, AppLink opens an intermediate page first
- Users typically need to click on that intermediate page before continuing to the target system or page
- Because of this behavior, AppLink is not suitable for SSO scenarios that require direct navigation to a final landing page
- If your business flow requires users to land on a specific target page immediately after sign-in, AppLink should not be the only navigation solution
Supported Outside the Fxiaoke App
Under certain conditions, clicking an AppLink can open Fxiaoke directly. These conditions depend on the operating system, application, network, and user behavior.
When those conditions are not met, AppLink is opened as a web page instead. That web page shows download guidance by default and also automatically attempts to launch Fxiaoke.
This means the AppLink flow does not guarantee a direct one-step arrival at the target page. In practice, the navigation may go through an intermediate page before the user continues into the target system.
Note
The actual AppLink flow may go through an intermediate page first, so direct arrival at the target page cannot be guaranteed every time.
Using AppLink in Web Pages Loaded by Fxiaoke
Fxiaoke can load web pages through H5 pages or other WebView-based scenarios. If those pages need to trigger Fxiaoke capabilities through AppLink, use one of the following approaches.
Open AppLink by changing window.location.href
window.location.href =
"https://{tenant-host}/fsh5/applink/arouseFsApp/index.html?bizPath=fslink&bizData={app_params}&webData={web_params}";Open AppLink with an <a /> tag
<a
href="https://{tenant-host}/fsh5/applink/arouseFsApp/index.html?bizPath=fslink&bizData={app_params}&webData={web_params}"
target="_blank"
>Open AppLink</a
>Open AppLink with window.open
window.open(
"https://{tenant-host}/fsh5/applink/arouseFsApp/index.html?bizPath=fslink&bizData={app_params}&webData={web_params}",
);