Replies: 1 comment
-
Hey 👋 Did you pull the latest imageb/source code on your machine? This looks like the bug we fixed in #469 🙂 Try also to update the dependencies ( |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Encountered a weird issue with a local build (with default env configurations) from mainline source build. Endpoint /api/token always returns "invalid grant" when trying to exchange auth code for a token. This error occurs when trying to access admin portal (e.g., "http://localhost:8000/admin")
I traced this to token.py::validate_grant_request() where the code_verifier errors out in this line:
I added this to the top of validate_grant_request():
and it seems to be working now.
What was very strange was that this works on codespace and Docker images without any problems.
Beta Was this translation helpful? Give feedback.
All reactions