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
{{ message }}
This repository has been archived by the owner on Jan 26, 2025. It is now read-only.
Single Page application flow
Home page (Secure Route with URL mapping '/') redirects to Login Page, upon authorising returned to implicit callback with code and token and displaying blank screen
Expected behavior
expected behaviour to call Logincallback and redirected to secure route home page (path '/')
Minimal reproduction of the problem with instructions
unable to upload sample code to github because of organisation guidelines and appending below mock up,
APP.js
put <Route path="/implicit/callback" component={LoginCallback} /> before the notFound route to prevent the notFound route from matching before the LoginCallback.
change <Route path="*" to={NotFound} /> to <Route path="*" render={NotFound} />, looks like the Route component accepts render or path, but no path props.
Related Issue
902
Pull Request
903
I'm submitting this issue for the package(s):
I'm submitting a:
Current behavior
Single Page application flow
Home page (Secure Route with URL mapping '/') redirects to Login Page, upon authorising returned to implicit callback with code and token and displaying blank screen
Expected behavior
expected behaviour to call Logincallback and redirected to secure route home page (path '/')
Minimal reproduction of the problem with instructions
unable to upload sample code to github because of organisation guidelines and appending below mock up,
APP.js
AppwithRouterAccess.js
Extra information about the use case/user story you are trying to implement
secured Home page ('/') -> should redirect to Login page -> after authentication and authorisation -> redirect to secure Home page
Environment
node -v
): 12.18.3The text was updated successfully, but these errors were encountered: