hootsuite-webhooks-events
Implement Hootsuite webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Hootsuite event notifications securely. Trigger with phrases like "hootsuite webhook", "hootsuite events", "hootsuite webhook signature", "handle hootsuite events", "hootsuite notifications". '
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill hootsuite-webhooks-events --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Hootsuite Webhooks & Events ## Overview Hootsuite provides webhook notifications for social stream events when building Hootsuite App Directory integrations. For API-only integrations, you poll for message state changes or implement your own scheduling system with callbacks. ## Instructions ### Step 1: Poll for Message Status Changes ```typescript // Since Hootsuite REST API doesn't push webhooks for message status, // poll for changes to scheduled messages async function pollMessageStatus(messageId: string, intervalMs = 30000) { const check = async () => { const response = await fetch(`https://platform.hootsuite.com/v1/messages/${messageId}`, { headers: { 'Authorization': `Bearer ${await getStoredToken()}` }, }); const { data } = await response.json(); if (data.state === 'SENT') { console.log(`Message ${messageId} sent at ${data.sentAt}`); return data; } else if (data.state === 'FAILED' || data.state === 'REJECTED') { console.error(`Message ${messageId} failed: ${data.state}`); return data; } console.log(`Message ${messageId}: ${data.state}, checking again...`); await new Promise(r => setTimeout(r, intervalMs)); return check(); }; return check(); } ``` ### Step 2: Build Custom S
- Overview
- Instructions
- Step 1: Poll for Message Status Changes
- Step 2: Build Custom Scheduling Webhook
- Step 3: Hootsuite App Directory Webhooks
- Resources
- Next Steps
What does the hootsuite-webhooks-events skill do?
Implement Hootsuite webhook signature validation and event handling. Use when setting up webhook endpoints, implementing signature verification, or handling Hootsuite event notifications securely. Trigger with phrases like "hootsuite webhook", "hootsuite events", "hootsuite webhook signature", "handle hootsuite events", "hootsuite notifications". '
How do I install it?
Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill hootsuite-webhooks-events --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.