I have a problem to config new credential of Google Auth. I create and add informations like ClientID and Client Secrets created on Google API, but the OAuth Redirect URL given is without https schema like this “n8n.domain.io/rest/oauth2-credential/callback”.
I add the url with http and https on GoogleAPI credentials config.
I running with nginx proxy and set variable WEBHOOK_URL: https://n8n.domain.io/webhook/
What is the error message ?
When i try Sign in with google the screen with message is open
Access blocked: Authorization Error
You can’t sign in to this app because it doesn’t comply with Google’s OAuth 2.0 policy for keeping apps secure.
You can let the app developer know that this app doesn’t comply with one or more Google validation rules.
Learn more about this error
If you are a developer of Blip-Sheets, see error details.
Error 400: invalid_request
It sounds like maybe the WEBHOOK_URL environment variable is not being up correctly or you have another variable that is not correctly set.
Can you share all of the env options you have set and for now update the webhook url to remove /webhook/ from the end as it isn’t needed and may cause other issues.
I check in pods and variables N8N_EDITOR_BASE_URL is set to n8n.domain.io without https. I don`t know why. After set in configmap to N8N_EDITOR_BASE_URL: https://n8n.domain.io works. Thanks