Hébergement VPS n8n | Automatisation sécurisée et évolutive
Formation n8n en Français : Automatisation & Agents IA
This course rebuilds the workflow node by node so you can recreate it live from scratch. Everything below is copy-paste ready.
flowchart LR
MT["Manually Run Workflow"] --> CFG["Configuration"]
ST["Daily Schedule (Optional)"] --> CFG
CFG --> GPI["Get Facebook Page Info"]
GPI --> GPF["Get Recent Page Posts"]
GPF --> SO["Split Out Each Post"]
SO --> FC["Fetch Post Comments"]
SO --> FR["Fetch Post Reactions"]
SO --> FS["Fetch Post Shares"]
FC --> FCC["Format Comment Count"]
FR --> FLC["Format Like Count"]
FS --> FSC["Format Share Count"]
FCC --> MG["Combine Engagement Metrics"]
FLC --> MG
FSC --> MG
MG --> GS["Save Engagement to Sheet"]
GS --> W["Rate Limit Pause"]
<aside> 💡
Key improvement vs the original template: the 3 separate "Loop Over Items" nodes were removed (n8n already iterates per item by default), and the 3 separate Google Sheets writes per post were consolidated into a single upsert via a Merge node. This cuts Sheets API calls by 3x and removes duplicate-write race conditions.
</aside>