Claude-code-plugins-plus podium-rate-limits
install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/podium-pack/skills/podium-rate-limits" ~/.claude/skills/jeremylongshore-claude-code-plugins-plus-podium-rate-limits && rm -rf "$T"
manifest:
plugins/saas-packs/podium-pack/skills/podium-rate-limits/SKILL.mdsource content
Podium Rate Limits
Overview
Implementation patterns for Podium rate limits using the REST API with OAuth2 authentication.
Prerequisites
- Completed
setuppodium-install-auth - Valid OAuth2 access token
Instructions
Step 1: API Call Pattern
import axios from 'axios'; const podium = axios.create({ baseURL: 'https://api.podium.com/v4', headers: { 'Authorization': `Bearer ${process.env.PODIUM_ACCESS_TOKEN}` }, }); const { data } = await podium.get('/locations'); console.log(`Locations: ${data.data.length}`);
Output
- Podium API integration for rate limits
- OAuth2 authenticated requests
- Error handling and retry logic
Error Handling
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Expired token | Refresh OAuth token |
| 429 Rate Limited | Too many requests | Implement backoff |
| 403 Forbidden | Missing scope | Update OAuth app scopes |
Resources
Next Steps
See related Podium skills for more workflows.