Trying to add Google OAuth to authenticate users. Created the needed Google Developer project and added the client ID and secret.
When clicking “Login with Google”, I get an authorization error -
Error 401: invalid_client

  • The OAuth client was not found.*

What are we doing wrong?

  • Redash Version: 8.0.0+b32245 (a16f551e)
  • Browser/OS: Chrome 84

Seems like your extra quotes " in values are causing the problem.
Remove them and try again.
(you can debug the client_id that is being sent to google by tracing the redirects from the browser)

1 Like

Yep. That did the trick. The quotes are not needed.
Once removed, Google OAuth worked. Thanks!

1 Like