A comprehensive automation tool for navigating developer portals and managing OAuth credentials for major social media and content platforms.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install platform-api-connector
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install platform-api-connector using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Platform API Connector is a specialized utility within the Openclaw Skills ecosystem designed to simplify the complex landscape of social media API integration. It provides standardized workflows for authenticating with Facebook Graph, Instagram Business, YouTube Data, Twitter/X, and TikTok APIs. By centralizing the process of app creation, permission scoping, and credential storage, this skill enables developers to build robust content automation and analytics tools without getting bogged down in platform-specific OAuth nuances.
Whether you are refreshing expired tokens or setting up a new multi-platform application from scratch, this skill ensures that your authentication flows are secure and persistent. It bridges the gap between raw developer portals and actionable API access, making it an essential part of any modern Openclaw Skills toolkit for social media automation.
To integrate this Platform API Connector into your Openclaw Skills workflow, start by preparing your environment for OAuth interactions. If you are integrating with Google-based services, install the required authentication libraries:
pip install google-auth-oauthlib
Configure your database to handle flexible credential storage. A JSONB column is recommended for SQL-based systems to accommodate the varying data structures across different platforms:
CREATE TABLE platform_connections (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
platform TEXT NOT NULL,
credentials JSONB NOT NULL,
updated_at TIMESTAMPTZ DEFAULT now()
);
The skill organizes platform data into a flexible schema to ensure compatibility with various Openclaw Skills and automation frameworks.
| Property | Type | Description |
|---|---|---|
platform |
String | The service name (e.g., facebook, youtube, twitter). |
credentials |
JSONB | A structured object containing tokens, IDs, and secrets. |
scopes |
Array | The specific permissions granted (e.g., instagram_content_publish). |
status |
String | Indicates if the connection is active or requires re-auth. |
token_expiry |
Timestamp | Tracking for platforms with short-lived access tokens. |
Loading
A technical guide for routing custom domain emails to existing inboxes using Openclaw Skills to facilitate account recovery and catch-all addresses.

A Python-based integration for fetching precise meteorological data and forecasts from MET Norway via coordinate-based lookups.

An all-in-one automation skill for managing the end-to-end lifecycle of corporate training projects, from legal contracts to promotional content.

A professional AI-driven system for designing high-impact corporate training programs and generating complete 14-document instructional packages with one-click automation.

Humanizer is a professional-grade editor that detects and removes robotic AI writing patterns to produce natural, human-sounding content.

A comprehensive framework for implementing secure API design patterns, authentication, and protection against common vulnerabilities.








































