← 返回
开发者工具 Key 中文

Postproxy

Call PostProxy API to create and manage social media posts
Create, schedule, and manage social media posts, comments, and DMs across 11 platforms — Facebook, Instagram, TikTok, LinkedIn, YouTube, X/Twitter, Threads, Pinterest, Bluesky, Telegram, and Google Business — via the Postproxy API.
danbaranov danbaranov 来源
开发者工具 clawhub v2.0.2 2 版本 99856 Key: 需要
★ 0
Stars
📥 2,080
下载
💾 3
安装
2
版本
#latest

概述

Postproxy API Skill

Call the Postproxy API to manage social media posts across multiple platforms (Facebook, Instagram, TikTok, LinkedIn, YouTube, X/Twitter, Threads, Pinterest, Bluesky, Telegram, Google Business).

Setup

API key must be set in environment variable POSTPROXY_API_KEY.

Get your API key at: https://app.postproxy.dev/api_keys

Base URL: https://api.postproxy.dev

All requests require a Bearer token:

-H "Authorization: Bearer $POSTPROXY_API_KEY"

Quick Start

# 1. List connected profiles
curl -X GET "https://api.postproxy.dev/api/profiles" \
  -H "Authorization: Bearer $POSTPROXY_API_KEY"

# 2. Publish a post to multiple platforms
curl -X POST "https://api.postproxy.dev/api/posts" \
  -H "Authorization: Bearer $POSTPROXY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "post": { "body": "Hello from Postproxy!" },
    "profiles": ["twitter", "linkedin", "threads"],
    "media": ["https://example.com/image.jpg"]
  }'

# 3. Schedule for later — add scheduled_at to the post object
curl -X POST "https://api.postproxy.dev/api/posts" \
  -H "Authorization: Bearer $POSTPROXY_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "post": { "body": "Scheduled post", "scheduled_at": "2026-06-16T09:00:00Z" },
    "profiles": ["twitter"]
  }'

profiles accepts network names (facebook, instagram, tiktok, linkedin, youtube, twitter, threads, pinterest, bluesky, telegram, google_business) or profile IDs.

Rule Files

Read the rule file matching the task before calling the API — they contain required parameters, platform quirks, and error semantics:

  • rules/profiles.md — List profiles, profile stats (followers/engagement, latest + timeseries), placements (Facebook pages, LinkedIn orgs, Pinterest boards, Telegram channels, Google Business locations)
  • rules/posts.md — Create posts (JSON or file upload), drafts, scheduling, threads (tweet chains), update, delete (DB and/or platform)
  • rules/queues.md — Posting queues: timeslots, priorities, jitter, pausing, adding posts to queues
  • rules/analytics.md — Post stats snapshots and per-platform metric fields
  • rules/comments.md — Post comments (list/reply/delete/hide/like), private replies, Google Business reviews (Profile Comments API)
  • rules/messages.md — Direct messages: chats, send/read messages, reactions, edits, the Meta 24h window
  • rules/platforms.md — Platform-specific parameters: Instagram, TikTok, YouTube, Bluesky, Telegram, Google Business (events/offers/CTAs), character and media limits
  • rules/webhooks.md — Webhook endpoints, all event types, HMAC signature verification, retries, delivery logs
  • rules/errors.md — Error response formats, common status codes, async failure statuses
  • rules/sdks.md — Official SDKs for 7 languages

Safety Rules

This skill publishes to, modifies, and deletes content on the user's real social media accounts, and can read/send private messages. Before any outward-facing or irreversible action, summarize exactly what will happen and get explicit user confirmation:

  • Publishing (create post without draft, publish draft, comment, reply): content goes live publicly and immediately. State the exact text, media, and target profiles/placements first. Prefer creating a draft when intent is ambiguous.
  • Deleting: deleting a post from the DB only (DELETE /api/posts/{id}) leaves it live on the platforms; delete_on_platform=true or /delete_on_platform removes it from the social networks irreversibly. Never delete on platform without the user explicitly confirming the post and scope.
  • Direct messages and private replies: these are private communications with real people. Only read or send them when the user explicitly asks; don't quote DM contents into other posts, tools, or external services. Private replies bypass Meta's 24h window — confirm before initiating contact.
  • Placements: when posting to Facebook without an explicit placement, the post goes to a random connected page; LinkedIn defaults to the personal profile. Always resolve and confirm the placement for placement networks.
  • Webhook secrets: the secret returned when creating a webhook is a credential — never print it in output, log it, or commit it. Webhook payloads can contain private content (DMs, comments) and are sent to the configured URL — only register HTTPS endpoints the user controls and trusts.

Key Behaviors

  • Async writes: comments, DMs, and platform deletions return pending and transition to published/deleted (or failed) — poll the resource or subscribe to webhooks.
  • Placements: Facebook, LinkedIn, Pinterest, Telegram, and Google Business post to a placement (page/org/board/channel/location). Telegram (chat_id), Pinterest, and Google Business (location_id) require one — see rules/profiles.md.
  • Queues vs schedule: pass scheduled_at or queue_id, never both.
  • Editing: only drafts and scheduled posts more than 5 minutes before publish time can be updated.

User Request

$ARGUMENTS

版本历史

共 2 个版本

  • v2.0.2 当前
    2026-06-11 22:53
  • v0.1.0
    2026-03-28 18:12 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,475
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,535
developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 427 📥 118,387