From podium-pack
Handles Podium API rate limits with backoff, retries, and error handling for 429s in OAuth2-authenticated REST calls for messaging, reviews, payments.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin podium-packThis skill is limited to using the following tools:
Implementation patterns for Podium rate limits using the REST API with OAuth2 authentication.
Provides patterns for handling common Podium API errors (401, 429, 403) with OAuth2 auth in messaging, reviews, and payments integrations.
Handles Intercom API rate limits with exponential backoff, header monitoring, and retry logic for 429 errors and throughput optimization.
Implements Clerk Backend API rate limit handling with TypeScript retry logic, batching, and header monitoring. Use when hitting 429 errors or scaling API usage.
Share bugs, ideas, or general feedback.
Implementation patterns for Podium rate limits using the REST API with OAuth2 authentication.
podium-install-auth setupimport 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}`);
| 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 |
See related Podium skills for more workflows.