hootsuite-install-auth

Featured

Install and configure Hootsuite SDK/CLI authentication. Use when setting up a new Hootsuite integration, configuring API keys, or initializing Hootsuite in your project. Trigger with phrases like "install hootsuite", "setup hootsuite", "hootsuite auth", "configure hootsuite API key".

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

# Hootsuite Install & Auth ## Overview Configure Hootsuite REST API OAuth 2.0 authentication. Hootsuite uses OAuth 2.0 with Bearer tokens. You register an app in the Hootsuite Developer Portal, get client credentials, and exchange authorization codes for access tokens. ## Prerequisites - Hootsuite account (Business plan or higher for API access) - Registered app at https://developer.hootsuite.com - Client ID and Client Secret from your app ## Instructions ### Step 1: Register Your App 1. Go to https://developer.hootsuite.com 2. Create a new app 3. Note your Client ID and Client Secret 4. Set redirect URI to `https://your-app.com/callback` ### Step 2: Configure Environment ```bash # .env (NEVER commit) HOOTSUITE_CLIENT_ID=your_client_id HOOTSUITE_CLIENT_SECRET=your_client_secret HOOTSUITE_REDIRECT_URI=https://your-app.com/callback HOOTSUITE_ACCESS_TOKEN= # Populated after OAuth flow # .gitignore .env .env.local ``` ### Step 3: OAuth 2.0 Authorization Flow ```typescript // auth.ts — OAuth 2.0 authorization code flow import 'dotenv/config'; const { HOOTSUITE_CLIENT_ID, HOOTSUITE_CLIENT_SECRET, HOOTSUITE_REDIRECT_URI } = process.env; // Step 1: Redirect user to authorize function getAuthUrl(): string { const params = new URLSearchParams({ response_type: 'code', client_id: HOOTSUITE_CLIENT_ID!, redirect_uri: HOOTSUITE_REDIRECT_URI!, scope: 'offline', }); return `https://platform.hootsuite.com/oauth2/auth?${params}`; } // Step 2: Exchange autho...

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 Featured

hubspot-install-auth

Install and configure HubSpot API client with authentication. Use when setting up a new HubSpot integration, configuring private app tokens, OAuth 2.0 flows, or initializing the @hubspot/api-client SDK. Trigger with phrases like "install hubspot", "setup hubspot auth", "hubspot access token", "configure hubspot API", "hubspot private app".

2,266 Updated today
jeremylongshore
AI & Automation Solid

hootsuite-security-basics

Apply Hootsuite security best practices for secrets and access control. Use when securing API keys, implementing least privilege access, or auditing Hootsuite security configuration. Trigger with phrases like "hootsuite security", "hootsuite secrets", "secure hootsuite", "hootsuite API key security".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hootsuite-hello-world

Create a minimal working Hootsuite example. Use when starting a new Hootsuite integration, testing your setup, or learning basic Hootsuite API patterns. Trigger with phrases like "hootsuite hello world", "hootsuite example", "hootsuite quick start", "simple hootsuite code".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hootsuite-local-dev-loop

Configure Hootsuite local development with hot reload and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Hootsuite. Trigger with phrases like "hootsuite dev setup", "hootsuite local development", "hootsuite dev environment", "develop with hootsuite".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hex-install-auth

Install and configure Hex SDK/CLI authentication. Use when setting up a new Hex integration, configuring API keys, or initializing Hex in your project. Trigger with phrases like "install hex", "setup hex", "hex auth", "configure hex API key".

2,266 Updated today
jeremylongshore