Flutter Developer
Hello, I'm trying to implement Magic Link Auth on a Flutter App, and I have two fundamental questions:
- How can I test the magic link on Android Emulator (I don't have a physical Android device)? The link is being sent to the email, but then I have the screen "Missing redirect URL".
I've implemented deep linking and routing (will send the routing in the next message otherwise I exceed the 2000 chars limit):
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" /><intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/></intent-filter><intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="https" android:host="cloud.appwrite.io" android:pathPrefix="/auth/magic-url" /></intent-filter>- I've implemented Deep Linking on iOS as well, but both on the Simulator and my iPhone I also receive see the "Missing redirect URL" screen.
To implement Deel Linking, I followed the instructions on docs.flutter.dev for universal links for iOS:
- I've added
FlutterDeepLinkingEnabledwith a Boolean valueYESin Xcode. - I've set
applinks:cloud.appwrite.ioas an associated domain in Xcode.
What am I missing? 🫠
Thanks!