👉 n8n No Limits Access :

https://www.hostg.xyz/SHHAd

Hébergement VPS n8n | Automatisation sécurisée et évolutive

coupon -15% : DRFIRAS15

👉 Formation n8n en Français

Formation n8n en Français : Automatisation & Agents IA

coupon -20% : LANCEMENT : HERE


Track Facebook page engagement to Google Sheets

This course rebuilds the workflow node by node so you can recreate it live from scratch. Everything below is copy-paste ready.

Flow overview

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>