#chooke-account-links
1 messages · Page 1 of 1 (latest)
Hello!
With account links we explicitly block custom URL schemes, but if you want to redirect to your app you could use universal links (https://developer.apple.com/ios/universal-links/) for your ios integration
For Android you could use a webview (using WebViewClient) that implements shouldInterceptRequest to intercept redirects to the return URL and handle it in your app (https://developer.android.com/reference/android/webkit/WebViewClient#shouldInterceptRequest(android.webkit.WebView, android.webkit.WebResourceRequest))
🤙 sweet , thats awesome , thank you for your help