Hi there,
I noticed when using the Okta SignIn widget that a different response is returned when passing the client ID, compared to if the client ID is not included. For example:
// with client ID returns token, code, status
const signIn = new OktaSignIn({
...params
clientId: '${clientId}',
});
Versus:
// without client ID returns user, type, session, status
const signIn = new OktaSignIn({
...params
});
Curious if there is a reason for this?
Thanks!
Grayson