I’m trying to create Google credentials to work on n8n, like Scheduler and Gmail, I can’t, because Google asks for a consent screen and when I access it, it blocks access to my app, below I put an image of the problem:
From looking at your screenshot it seems you might be using an invalid redirect URL. I just tried authenticating with Google and the request url looks like https://accounts.google.com/o/oauth2/v2/auth?client_id=a&redirect_uri=https... for me. So the redirect_uri parameter starts with https for me rather than the hostname like it does for you.
Have you configured the WEBHOOK_URL environment variable in your docker-compose file? If so, can try changing it so it contains the https protocol? Something like WEBHOOK_URL=https://n8n.imdesigner.com.br/ should do.