webflow-install-auth

Solid

Install the Webflow JS SDK (webflow-api) and configure OAuth 2.0 or API token authentication. Use when setting up a new Webflow integration, configuring access tokens, or initializing the WebflowClient in your project. Trigger with phrases like "install webflow", "setup webflow", "webflow auth", "configure webflow API token", "webflow OAuth".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Webflow Install & Auth ## Overview Set up the official Webflow JS SDK (`webflow-api` on npm) and configure authentication using either a workspace/site API token or OAuth 2.0 for Data Client Apps. ## Prerequisites - Node.js 18+ - npm, pnpm, or yarn - A Webflow account with a workspace - An API token (workspace or site) from `https://developers.webflow.com` ## Instructions ### Step 1: Install the SDK ```bash # npm npm install webflow-api # pnpm pnpm add webflow-api # yarn yarn add webflow-api ``` The package is `webflow-api` (not `@webflow/sdk`). Current version: 3.x (Data API v2). ### Step 2: Choose Authentication Method Webflow offers two auth methods: | Method | Use Case | Scope | |--------|----------|-------| | **API Token** (workspace) | Server-side scripts, internal tools | All sites in workspace | | **API Token** (site) | Single-site integrations | One site only | | **OAuth 2.0** | Public apps, Webflow Marketplace apps | User-authorized scopes | ### Step 3: Token-Based Authentication ```bash # Set environment variable (never hardcode tokens) echo 'WEBFLOW_API_TOKEN=your-token-here' >> .env echo '.env' >> .gitignore ``` ```typescript import { WebflowClient } from "webflow-api"; // Initialize with workspace or site token const webflow = new WebflowClient({ accessToken: process.env.WEBFLOW_API_TOKEN!, }); ``` ### Step 4: OAuth 2.0 Flow (Data Client Apps) For apps that need user authorization, implement the OAuth 2.0 authorization code flow: ```types...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

webflow-security-basics

Apply Webflow API security best practices — token management, scope least privilege, OAuth 2.0 secret rotation, webhook signature verification, and audit logging. Use when securing API tokens, implementing least privilege access, or auditing Webflow security configuration. Trigger with phrases like "webflow security", "webflow secrets", "secure webflow", "webflow API key security", "webflow token rotation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-install-auth

Install and configure Salesforce SDK/CLI authentication with jsforce or Salesforce CLI. Use when setting up a new Salesforce integration, configuring OAuth flows, or initializing Salesforce connectivity in your project. Trigger with phrases like "install salesforce", "setup salesforce", "salesforce auth", "configure salesforce", "jsforce setup", "sf cli login".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-enterprise-rbac

Configure Webflow enterprise access control — OAuth 2.0 app authorization, scope-based RBAC, per-site token isolation, workspace member management, and audit logging for compliance. Trigger with phrases like "webflow RBAC", "webflow enterprise", "webflow roles", "webflow permissions", "webflow OAuth scopes", "webflow access control", "webflow workspace members".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesloft-install-auth

Set up SalesLoft API authentication with OAuth 2.0 or API key. Use when configuring a new SalesLoft integration, setting up OAuth flows, or initializing API access to the SalesLoft REST API v2. Trigger: "install salesloft", "setup salesloft", "salesloft auth", "salesloft API key".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-common-errors

Diagnose and fix Webflow Data API v2 errors — 400, 401, 403, 404, 409, 429, 500. Use when encountering Webflow API errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "webflow error", "fix webflow", "webflow not working", "debug webflow", "webflow 429", "webflow 401".

2,266 Updated today
jeremylongshore