Hi there,
I’m trying to login using the sign-in widget and noticed that the session object is missing in the onSuccess response:
onSuccess = response => {
// response.session is undefined
// response object includes next, status, type, user
oktaAuth.signInWithRedirect({
sessionToken: res.session.token
});
};
This is for a non-OIDC application. Was hoping to understand how to pass the session token to the response?
Thanks,
Grayson