You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FutureOr<DeepLink> deeplinkBuilder(PlatformDeepLink deeplink) {
// auto_route redirection is losing the query parameters completely (on latest version),// so we need to handle the magic link redirection manuallyif (deeplink.uri.path =="/magic-link") {
final token = deeplink.uri.queryParameters["token"];
returnDeepLink.single(LoginRoute(token: token));
}
saveCurrentDeeplink(deeplink.uri);
return deeplink;
}
The text was updated successfully, but these errors were encountered:
Started happening on migration from
8.3.0
to9.3.0+1
My login page:
Deeplink: sample:
http://whatever.com/magic-link?token=something
Result:
Login page is opened but
token
is alwaysnull
.My current workaround:
The text was updated successfully, but these errors were encountered: