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
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am using this for direct going to Register form. But doesn't work. I got missing cookie message.
Uri authorizationEndpointUri = Uri.parse("https://.../realms/.../login-actions/registration"); await manager!.loginAuthorizationCodeFlow( discoveryDocumentOverride: manager!.discoveryDocument.copyWith( authorizationEndpoint: authorizationEndpointUri, ) );
I am using this for direct going to Forgot Password form. But when click on Back to Login, I got missing cookie message, instead.
Uri authorizationEndpointUri = Uri.parse("https://.../realms/.../login-actions/reset-credentials"); await manager!.loginAuthorizationCodeFlow( discoveryDocumentOverride: manager!.discoveryDocument.copyWith( authorizationEndpoint: authorizationEndpointUri, ) );
Which params are missing in loginAuthorizationCodeFlow?
Any idea? What is missing? Is authorizationEndpointUri correct? Or missing special params?
Beta Was this translation helpful? Give feedback.
All reactions