Getting the following after successful login. The login flow is working as expected on Android, and correctly returns token, refresh, etc...
"Safari cannot open the page because the address is invalid"
Auth0 Callback Config
Info.plist
...<key>CFBundleIdentifier</key><string>$(PRODUCT_BUNDLE_IDENTIFIER)</string><key>CFBundleURLTypes</key><array><dict><key>CFBundleTypeRole</key><string>None</string><key>CFBundleURLName</key><string>auth0</string><key>CFBundleURLSchemes</key><array><string>$(PRODUCT_BUNDLE_IDENTIFIER)</string></array></dict></array>...
AppDeligate.m
...#import <React/RCTLinkingManager.h>- (BOOL)application:(UIApplication *)application openURL:(NSURL *)urlsourceApplication:(NSString *)sourceApplication annotation:(id)annotation{ return [RCTLinkingManager application:application openURL:url sourceApplication:sourceApplication annotation:annotation];}...