I made sure the Google Drive API was enabled.
I made sure to include all scopes in for the app.
I tried in both Testing and Publish mode.
I am using the localhost:5678... redirect url provided by n8n.
Everytime I try to login I get a 404 error. What other steps am I possibly missing?
I don’t have a custom path set for N8N_PATH, but I do have WEBHOOK_URL=http://localhost:5678/webooks/ in my docker-compose.yaml. But the Redirect URL seems to work because it opens up the Gmail Oauth window. I get the 404 after I signing in and enable n8napp access.
The problem here is /webooks isn’t an n8n url and you are not running n8n in that folder so it will always fail. I would set webhook_url to just http://localhost:5678 or remove that option as you are not using a domain anyway.
@netroy@Jon Thank you both, removing /webhooks was the correct fix. My follow up question is when would anyone want to update WEBHOOK_URL to something different? Would it be for when I move this to a registered domain?