Redirecting users from Coda Links back to your app
Guide for iOS App
Option 1 (Recommended): Set up a Universal Link
Step 1: Enable Associated Domains in your Apple Developer account
Step 2: Create and host apple-app-site-association file in your website domain
{
"applinks": {
"details": [
{
"appIDs": ["KV7GMR96XX.com.coda.outlinkdemo"],
"components": [
{ "/": "/payments/success", "?", "*", "comment": "Match success redirect URL" },
{ "/": "/payments/pending", "?", "*", "comment": "Match pending redirect URL" }
]
}
]
}
}Step 3: Add Associated Domains entitlements in Xcode:

Step 4: Provide the Universal Links to Coda

Step 5: Handle Universal Links in your app
Option 2 (Not recommended): Set up a Custom URL Scheme
Step 1: Register the URL scheme in Info.plist
Step 2: Handle the scheme in the app
Guide for Android App
Last updated
Was this helpful?