linktree-install-auth
SolidInstall and configure Linktree SDK/API authentication. Use when setting up a new Linktree integration. Trigger: "install linktree", "setup linktree", "linktree auth".
AI & Automation 2,266 stars
315 forks Updated today MIT
Install
Quality Score: 97/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Linktree Install & Auth
## Overview
Set up Linktree API for programmatic link-in-bio management with 25M+ creators.
## Prerequisites
- Linktree account and API access
- API key/credentials from Linktree dashboard
- Node.js 18+ or Python 3.8+
## Instructions
### Step 1: Install SDK
```bash
npm install @linktree/sdk
# or: pip install linktree-sdk
```
### Step 2: Configure Authentication
```bash
export LINKTREE_API_KEY="your-api-key-here"
echo 'LINKTREE_API_KEY=your-api-key' >> .env
```
### Step 3: Verify Connection (TypeScript)
```typescript
import { LinktreeClient } from '@linktree/sdk';
const client = new LinktreeClient({ apiKey: process.env.LINKTREE_API_KEY });
const profile = await client.profiles.get('myprofile');
console.log(`Profile: ${profile.username} — ${profile.links.length} links`);
```
### Step 4: Verify Connection (Python)
```python
import linktree
client = linktree.Client(api_key=os.environ['LINKTREE_API_KEY'])
profile = client.profiles.get('myprofile')
print(f'Profile: {profile.username} — {len(profile.links)} links')
```
## Error Handling
| Error | Code | Solution |
|-------|------|----------|
| Invalid API key | 401 | Verify credentials in dashboard |
| Permission denied | 403 | Check API scopes/permissions |
| Rate limited | 429 | Implement backoff |
## Resources
- [Linktree Documentation](https://linktr.ee/marketplace/developer)
## Next Steps
After auth, proceed to `linktree-hello-world`.
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
linktree-core-workflow-a
Execute Linktree primary workflow: Profile & Links Management. Trigger: "linktree profile & links management", "primary linktree workflow".
2,266 Updated today
jeremylongshore AI & Automation Solid
linktree-hello-world
Create a minimal working Linktree example. Trigger: "linktree hello world", "linktree example", "test linktree".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-common-errors
Diagnose and fix Linktree common errors. Trigger: "linktree error", "fix linktree", "debug linktree".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-deploy-integration
Deploy Integration for Linktree. Trigger: "linktree deploy integration".
2,266 Updated today
jeremylongshore AI & Automation Featured
linktree-security-basics
Security Basics for Linktree. Trigger: "linktree security basics".
2,266 Updated today
jeremylongshore