Install
openclaw skills install facebook-secureOpenClaw skill for Facebook Graph API workflows focused on Pages posting, comments, and Page management using direct HTTPS requests.
openclaw skills install facebook-secureProvide a production-oriented guide for building Facebook Graph API workflows for Pages: publishing posts, managing comments, and operating Page content safely using direct HTTPS calls.
references/graph-api-overview.md for base URLs, versions, and request patterns.references/page-posting.md for Page publishing workflows and fields.references/comments-moderation.md for comment actions and moderation flows.references/permissions-and-tokens.md for access types and scope guidance.references/webhooks.md for subscriptions and verification steps.references/http-request-templates.md for concrete HTTP request payloads.This skill requires the following environment variables to be set:
FB_APP_ID – Your Facebook App ID.FB_APP_SECRET – Your Facebook App Secret (highly sensitive).FB_PAGE_ID – The target Facebook Page ID.FB_ACCESS_TOKEN – A Page access token with sufficient permissions.Best practices:
If a token or secret is suspected to be leaked:
All Graph API calls must include a valid access token either as a query parameter access_token or in the Authorization: Bearer <token> header. See references/http-request-templates.md for examples.
references/security-and-secrets.md – Detailed security guidelines.references/permissions-and-tokens.md now includes environment variable requirements.references/http-request-templates.md includes authentication patterns.