Deep links
Appetizes deep linking feature can be used to simplify user workflows and reduce friction by allowing users to jump directly to relevant content or actions.
Supported Links
Android AppLinks / iOS Universal Links
Custom Schema Deeplinks
Web Links
Appetize allows configuration of deep links at app launch with launchUrl or during runtime with openUrl, depending on when and how the link needs to be triggered.
launchUrl
To launch a URL (deep link or regular) when the device starts.
Verifies AppLink or Universal Link associations (if applicable), which may delay the device launch until the validation is complete
Set the deep-link URL by adding the URL encoded launchUrl
query parameter to your app or embed URL.
See Query Params Reference for more information.
openUrl
To launch a URL (deep link or regular) while the device (or application) is already running.
This can be called multiple times after launch of the device, with the assumption that all AppLink and Universal Link associations are already established.
See the API Reference for more information.
Troubleshooting
Please note that the use of AppLinks and Universal Links may be affected if our network traffic monitor feature is enabled.
Verifying Associated Domains Entitlement included in your iOS App
Open the Terminal on your macOS machine.
Navigate to the directory where your app's
.app
bundle is located. For example, if your app is namedYourAppName
, and it's in the/Applications
folder, you can use the following command to change to that directory:
Run the
codesign
command with the--entitlements
flag to extract the entitlements XML from your app bundle:
This command will print the entitlements XML to the Terminal.
Verify that the entitlements XML contains the
com.apple.developer.associated-domains
key and that it specifies the expected URL for your associated domain. The output should look like the following:
Ensure that the <string>
value within <array>
corresponds to the domain you expect for your app's associated domains.
Last updated