From podium-pack
Provides Podium reference architecture for REST API integration with OAuth2. Includes TypeScript axios examples, error handling 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 reference architecture using the REST API with OAuth2 authentication.
Provides TypeScript patterns for Podium API deploy integration using OAuth2-authenticated REST calls for messaging, reviews, and payments.
Provides Hootsuite reference architecture and TypeScript project layout for API integrations with OAuth, token refresh, scheduling, and media handling. Use for new integrations or structure reviews.
Implements layered TypeScript/Node.js architecture for Intercom integrations with webhooks, contact sync, services, caching, and API endpoints.
Share bugs, ideas, or general feedback.
Implementation patterns for Podium reference architecture 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.