Portal Community
What it does: The Facebook node (facebook) exposes Facebook Graph API operations against a Facebook Page as workflow steps — publishing posts, reading the feed, replying to and moderating comments, sending Messenger replies, reacting to posts, and uploading photos/videos. Every operation authenticates with a Page access token, resolved vault-first with an inline fallback.

Quick Start

  1. Add a Facebook node to your workflow
  2. Set resource to page and operation to post
  3. Set pageId to your Facebook Page ID
  4. Provide a Page access token — either a credentialID pointing at a vault secret, or the inline pageAccessToken field (development only)
  5. Enter message with the post text
  6. Run the workflow — the node publishes the post and returns its new postId
Tip: Every operation on this node shares the same config-key pattern — resource, operation, a Page access token, and (for most operations) pageId — plus a small set of operation-specific fields. Learn the pattern once on Input & Output and every operation below follows it.

Pages in This Guide

Configuration

Dependency registration, HTTP clients, and rate-limit handling.

Authentication

Facebook App setup, Page access tokens, and the credential vault.

Page Operations

post, getFeed, getInfo, getInsights — publish and read a Page.

Post Operations

comment, getComments, update — work with an individual post.

Message Operations

send, getConversations — Messenger replies and conversation lists.

Reactions

add — react to a post with LIKE, LOVE, HAHA, and more.

Moderation

hideComment, deleteComment — keep a Page's comments clean.

Media Operations

uploadImage, uploadVideo — publish photos and videos by URL.

Input & Output

The shared config-key pattern, pagination, and output ports.

Examples

Worked workflow patterns using this node.

Troubleshooting

Common errors and how to fix them.

Roadmap

Webhook-driven triggers — what's built, what's not wired up yet.

Core Concepts

Graph API

Every operation on this node calls the Facebook Graph API v25.0 (https://graph.facebook.com/v25.0) using a Page-scoped access token. Reads (feed, comments, conversations, insights) and writes (post, comment, message, react, moderate, upload) all go through the same versioned endpoint.

Resources

Operations are grouped by resource, matching the shape of the Graph API surface this node covers:

Authentication

Every operation authenticates with a Facebook Page access token. The node resolves it vault-first (a credentialID pointing at a stored secret) with an inline pageAccessToken config field as a development-only fallback. See Authentication for how to obtain and configure one.

Operation Summary

Resource Operation Guide Page
pagepost, getFeed, getInfo, getInsightsPage Operations
postcomment, getComments, updatePost Operations
messagesend, getConversationsMessage Operations
reactionsaddReactions
moderationhideComment, deleteCommentModeration
mediauploadImage, uploadVideoMedia Operations