Hi @vika.moshura,
Welcome to the Auth0 Community!
I understand you have encountered issues logging in, specifically with the "Unable to issue redirect for OAuth 2.0 transaction"
.
It seems that this issue can happen due to a redirect_uri
not being provided in the login request. With that, could you please double-check that your login request includes the redirect_uri
query parameter?
For example, the login request should look something like the following:
https://{yourDomain}/authorize?
response_type=code&
code_challenge={codeChallenge}&
code_challenge_method=S256&
client_id={yourClientId}&
redirect_uri={yourCallbackUrl}&
scope={scope}&
state={state}
If you continue to experience the error even after making these changes, could you please capture a HAR file of the login event and send them to me as a direct message to investigate further?
I look forward to your reply.
Thanks,
Rueben
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.