Hello everyone, I have a react application. I am able to successfully use okta to sign on with an authorization URI that looks like this:
https://dev-123456789.okta.com/oauth2/abcd123456/v1/authorize?client_id=0000000000000000000&code_challenge=aaaaaaaaaaaaaaaaaaaaaaa&code_challenge_method=S256&nonce=bbbbbbbbbbbbbbbbbbbbbbbb&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fcallback&response_type=code&sessionToken=ccccccccccccccccccccccccccc&state=ddddddddddddddddddddddddddddddd3&scope=openid%20email%20profile
That is for the front end, now how do I also consume the same credentials, or pass them to the back end API for verification? I have searched multiple ways and I can’t seem to find a working solution.