The file follows a specific schema to identify your application and the web paths it is permitted to handle.
The core of this integration is a file that windows-app-web-link .
: Users can manually enable or disable these link handlers at any time via Settings > Apps for Websites in Windows. Download windows app web link[1] json
: Windows makes an HTTPS connection to your server and reads the JSON data to confirm that the website owner authorizes the app.
: Defines which URL patterns the app can handle. Using ["*"] allows the app to open for all links on the domain. The file follows a specific schema to identify
[ { "packageFamilyName": "Your_App_Package_Family_Name_9jmtgj1pbbz6e", "paths": [ "*" ], "excludePaths": [ "/news/*", "/blog/*" ], "allowSubdomains": true } ] Use code with caution. Copied to clipboard
: Developers can use registry keys to force path validation for side-loaded apps during development. 4. User Experience and Control : Windows makes an HTTPS connection to your
: This file must not have a .json file extension.