Hello Everyone:
I’m building a fully autonomous AI system (SYNTARA) and needed to confirm whether n8n can generate and upload files to Google Drive automatically, using only API and system triggers, without any manual intervention.
The goal was for n8n to:
- Receive a text string and a file name from a webhook.
- Create a
.txt
file dynamically. - Upload that file into a specific Drive folder.
- Confirm execution (optionally respond to webhook).
We hit several blockers with the fileName
field not evaluating expressions like {{$binary.data.fileName}}
, and webhook behaviors between Test URL vs Production URL.
What is the error message (if any)?
Cannot POST /webhook/subir-a-drive
when trying to use Production URL from outside.- Files were uploaded with the literal name
{{$binary.data.fileName}}
instead of resolving the expression. - Some executions failed silently unless “Test Event” was actively listening.
Please share your workflow
json
CopiarEditar
Share the output returned by the last node
memoria_2025-05-02T06-22-11-123Z.txt
was successfully uploaded to the correct Google Drive folder with full automation from webhook.
Information on your n8n setup
- n8n version:
1.44.0
- Database: Default (SQLite)
- n8n EXECUTIONS_PROCESS setting:
own
- Running n8n via: VPS with Docker
- Operating system: Ubuntu 22.04 LTS
Let me know if you’d like a cleaner export .json
of the workflow or if this should be posted in “Showcase” instead of “Questions”. This is part of a larger self-writing, self-learning AI system and I’m happy to share progress.