Interface DeeplinkHandledStatus
-
- All Implemented Interfaces:
public interface DeeplinkHandledStatusA class representing the three states of a deeplink handled by StytchClient.handle() / StytchB2BClient.handle()
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classDeeplinkHandledStatus.HandledIndicates that a deeplink was successfully parsed from the deeplink.
public final classDeeplinkHandledStatus.NotHandledIndicates that a deeplink was not handled by the Stytch client, either because a token could not be parsed from it or it is not a known or supported authentication method.
This could happen if you pass a non-Stytch deeplink intent to the StytchClient.handle() method, or are trying to use a Consumer/B2B token in the wrong SDK.
public final classDeeplinkHandledStatus.ManualHandlingRequiredIndicates that this was a supported Stytch deeplink, but there is something more your application needs to do with the extracted token.
Currently, this is only used for handling PasswordResetStart deeplinks, in which you must collect a new password from a user and use this returned token to complete the PasswordReset flow.
-