← 返回
未分类 中文

Facebook

Manage Facebook Pages, posts, comments, messages, and insights via the Facebook Graph API. Use this skill when users want to post content, read engagement me...
通过 Facebook Graph API 管理页面、帖子、评论、消息和洞察,适用于发布内容或读取互动数据等需求。
hith3sh hith3sh 来源
未分类 clawhub v1.0.5 2 版本 99755.2 Key: 无需
★ 6
Stars
📥 1,510
下载
💾 1
安装
2
版本
#latest

概述

Facebook

!Facebook

Access Facebook Pages via the Graph API with managed OAuth authentication. Post content, read engagement, manage comments and messages, and view insights from chat.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Facebook API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Facebook
:---::---::---:
!Install!PairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Facebook

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│  Facebook Graph  │
│   (User Chat)   │     │   (OAuth)    │     │      API          │
└─────────────────┘     └──────────────┘     └──────────────────┘
          │                       │                       │
          │  1. Install Plugin    │                       │
          │  2. Pair Device       │                       │
          │  3. Connect Facebook  │                       │
          │                       │  4. Secure Token      │
          │                       │  5. Proxy Requests    │
          │                       │                       │
          ▼                       ▼                       ▼
    ┌──────────┐           ┌──────────┐           ┌──────────┐
    │  SKILL   │           │ Dashboard│           │ Facebook │
 │  File    │           │ Auth     │           │ Business  │
    └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Facebook again."

Quick Start

# List integrations
clawlink_list_integrations

# List Facebook tools
clawlink_list_tools --integration facebook

# Search for a specific tool
clawlink_search_tools --query "post" --integration facebook

Authentication

All Facebook tool calls are authenticated automatically by ClawLink using the user's connected Facebook account.

No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Facebook Graph API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=facebook and connect Facebook.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for facebook in the list.

Verify Connection

clawlink_list_tools --integration facebook

Response: Returns the live tool catalog for Facebook.

Reconnect

If Facebook tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=facebook
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration facebook

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Facebook is connected.
  2. Call clawlink_list_tools --integration facebook to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration facebook.
  5. If no Facebook tools appear, direct the user to https://claw-link.dev/dashboard?add=facebook.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: List posts → Get insights → Show results         │
└─────────────────────────────────────────────────────────────┘
                               │
                               ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  list → get → describe → preview → confirm → call           │
│                                                             │
│  Example: Describe tool → Preview changes → User approves   │
│           → Execute update                                  │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Tool Reference

Pages& Profiles

ToolDescriptionMode
-------------------------
facebook_list_managed_pagesList Pages the user managesRead
facebook_get_page_detailsGet Page metadata and settingsRead
facebook_get_page_rolesGet Page roles and permissionsRead
facebook_update_page_settingsUpdate Page settingsWrite

Posts

ToolDescriptionMode
-------------------------
facebook_get_page_postsGet posts from a PageRead
facebook_get_postGet a specific postRead
facebook_create_postCreate a text or link postWrite
facebook_create_photo_postCreate a photo postWrite
facebook_update_postUpdate an existing postWrite
facebook_delete_postDelete a postWrite
facebook_get_scheduled_postsGet scheduled postsRead
facebook_publish_scheduled_postPublish a scheduled postWrite

Comments

ToolDescriptionMode
-------------------------
facebook_get_commentsGet comments on a postRead
facebook_get_commentGet a specific commentRead
facebook_create_commentCreate a comment on a postWrite
facebook_update_commentUpdate a commentWrite
facebook_delete_commentDelete a commentWrite

Messaging

ToolDescriptionMode
-------------------------
facebook_get_page_conversationsGet Page conversationsRead
facebook_get_conversation_messagesGet messages in a conversationRead
facebook_send_messageSend a message from the PageWrite
facebook_send_media_messageSend media (image/video) messageWrite
facebook_mark_message_seenMark a message as seenWrite

Insights& Analytics

ToolDescriptionMode
-------------------------
facebook_get_page_insightsGet Page analytics and metricsRead
facebook_get_post_insightsGet post-specific insightsRead
facebook_get_post_reactionsGet reactions on a postRead

Photo Albums

ToolDescriptionMode
-------------------------
facebook_create_photo_albumCreate a photo albumWrite
facebook_get_page_photosGet Page photosRead
facebook_upload_photos_batchUpload multiple photosWrite

Code Examples

List managed Pages

clawlink_call_tool --tool "facebook_list_managed_pages" \
  --params '{}'

Get Page posts

clawlink_call_tool --tool "facebook_get_page_posts" \
  --params '{
    "page_id": "YOUR_PAGE_ID",
    "limit": 20
  }'

Create a post

clawlink_call_tool --tool "facebook_create_post" \
  --params '{
    "page_id": "YOUR_PAGE_ID",
    "message": "Hello from ClawLink! This is an automated post."
  }'

Get post insights

clawlink_call_tool --tool "facebook_get_post_insights" \
  --params '{
    "post_id": "YOUR_POST_ID"
  }'

Security & Permissions

  • Access is scoped to the connected Facebook account's managed Pages and their permissions.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (deleting posts, comments) are marked as high-impact and must be confirmed.
  • Publishing posts affects the Page's public-facing content; confirm all write operations.
  • Messaging operations deliver to real users; confirm before sending.

Notes

  • Facebook Graph API uses cursor-based pagination for large result sets.
  • CDN-based media URLs (from source field) are time-limited; download promptly if long-term access is needed.
  • Rate limits apply to API calls (error codes 4,17, 613); use backoff for high-volume operations.
  • The API version is v23.0 (released May 2025); older versions are deprecated.
  • Some permissions require Facebook app review before use in production.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration facebook.
Missing connectionFacebook is not connected. Direct the user to https://claw-link.dev/dashboard?add=facebook.
(#404) Page not foundThe Page ID does not exist or is not accessible.
(#200) Permission deniedThe app does not have the required permission.
(#190) Token expiredThe access token has expired. Reconnect Facebook.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly facebook.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.5 当前
    2026-06-09 16:11 安全 安全
  • v0.1.0
    2026-05-08 02:56 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 891 📥 203,844
office-efficiency

Microsoft Excel

hith3sh
通过托管 OAuth 集成 Microsoft Excel API,实现对 OneDrive 中 Excel 工作簿、工作表、区域、表格和图表的读写。使用此技能...
★ 6 📥 1,906
content-creation

humanizer-zh

liuxy951129-cpu
去除文本中的 AI 生成痕迹。适用于编辑或审阅文本,使其听起来更自然、更像人类书写。 基于维基百科的"AI 写作特征"综合指南。检测并修复以下模式:夸大的象征意义、 宣传性语言、以 -ing 结尾的肤浅分析、模糊的归因、破折号过度使用、三段
★ 57 📥 28,543