Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

threads-apithreads API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

1,479

周安装

61

GitHub Stars

31

下载量

483
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:threads-api(threads API 搜索)
来源仓库:https://github.com/rawveg/skillsforge-marketplace
仓库路径:skills/threads-api
安装命令:
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill threads-api
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill threads-api

简介

用于辅助 API 设计、接口文档编写及服务集成说明。

  • 适合梳理 endpoint、生成 OpenAPI 草稿或检查字段命名规范。
  • 使用时需结合实际业务语义与鉴权机制,避免虚构数据结构。
  • 安装命令:npx skills add https://github.com/rawveg/skillsforge-marketplace --skill threads-api。
  • 建议优先参考现有代码或 schema 文件,确保接口定义准确。

SKILL.md

Threads API Skill

Comprehensive assistance with Meta's Threads API development for building applications that integrate with the Threads social platform.

When to Use This Skill

This skill should be triggered when you are:

  • Building Threads integrations - Creating apps that post to or read from Threads
  • Implementing authentication - Setting up OAuth flows for Threads API access
  • Working with media uploads - Uploading images, videos, or carousel posts to Threads
  • Managing user content - Publishing, retrieving, or managing Threads posts
  • Fetching analytics - Retrieving insights and metrics for Threads content
  • Handling webhooks - Processing real-time updates from Threads
  • Troubleshooting API errors - Debugging authentication, rate limits, or API responses
  • Reading Threads profiles - Fetching user profile data and posts

Quick Reference

Authentication - Getting an Access Token

// Step 1: Redirect user to authorization endpoint
const authUrl = `https://threads.net/oauth/authorize?client_id=${CLIENT_ID}&redirect_uri=${REDIRECT_URI}&scope=threads_basic,threads_content_publish&response_type=code`;

// Step 2: Exchange authorization code for access token
const response = await fetch('https://graph.threads.net/oauth/access_token', {
  method: 'POST',
  headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
  body: new URLSearchParams({
    client_id: CLIENT_ID,
    client_secret: CLIENT_SECRET,
    grant_type: 'authorization_code',
    redirect_uri: REDIRECT_URI,
    code: authorizationCode
  })
});

const { access_token } = await response.json();

Publishing a Text Post

// Create a simple text post
const response = await fetch(`https://graph.threads.net/v1.0/me/threads`, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': `Bearer ${accessToken}`
  },
  body: JSON.stringify({
    media_type: 'TEXT',
    text: 'Hello from Threads API! 🎉'
  })
});

const data = await response.json();
console.log('Post ID:', data.id);

Publishing an Image Post

import requests

# Upload and publish an image
url = "https://graph.threads.net/v1.0/me/threads"
headers = {"Authorization": f"Bearer {access_token}"}

data = {
    "media_type": "IMAGE",
    "image_url": "https://example.com/image.jpg",
    "text": "Check out this image! #API"
}

response = requests.post(url, headers=headers, json=data)
post_id = response.json()["id"]
print(f"Posted image with ID: {post_id}")

Publishing a Video Post

// Step 1: Create a video container
const container = await fetch(`https://graph.threads.net/v1.0/me/threads`, {
  method: 'POST',
  headers: { 'Authorization': `Bearer ${accessToken}` },
  body: JSON.stringify({
    media_type: 'VIDEO',
    video_url: 'https://example.com/video.mp4',
    text: 'Check out this video!'
  })
});

const { id: containerId } = await container.json();

// Step 2: Publish the container
await fetch(`https://graph.threads.net/v1.0/me/threads_publish`, {
  method: 'POST',
  headers: { 'Authorization': `Bearer ${accessToken}` },
  body: JSON.stringify({ creation_id: containerId })
});

Fetching User Profile

import requests

# Get authenticated user's profile
url = f"https://graph.threads.net/v1.0/me"
headers = {"Authorization": f"Bearer {access_token}"}
params = {
    "fields": "id,username,name,threads_profile_picture_url,threads_biography"
}

response = requests.get(url, headers=headers, params=params)
profile = response.json()

print(f"Username: {profile['username']}")
print(f"Bio: {profile['threads_biography']}")

Fetching User's Threads

// Get user's recent threads with pagination
const response = await fetch(
  `https://graph.threads.net/v1.0/me/threads?fields=id,text,timestamp,media_url&limit=25`,
  {
    headers: { 'Authorization': `Bearer ${accessToken}` }
  }
);

const { data, paging } = await response.json();
data.forEach(thread => {
  console.log(`${thread.timestamp}: ${thread.text}`);
});

// Use paging.next for next page

Publishing a Carousel Post

import requests

# Create a carousel with multiple images
url = "https://graph.threads.net/v1.0/me/threads"
headers = {"Authorization": f"Bearer {access_token}"}

data = {
    "media_type": "CAROUSEL",
    "children": [
        {"media_type": "IMAGE", "image_url": "https://example.com/img1.jpg"},
        {"media_type": "IMAGE", "image_url": "https://example.com/img2.jpg"},
        {"media_type": "IMAGE", "image_url": "https://example.com/img3.jpg"}
    ],
    "text": "Swipe through these images! 📸"
}

response = requests.post(url, headers=headers, json=data)
carousel_id = response.json()["id"]

Retrieving Insights (Analytics)

// Get insights for a specific thread
const threadId = '123456789';
const response = await fetch(
  `https://graph.threads.net/v1.0/${threadId}/insights?metric=views,likes,replies,reposts`,
  {
    headers: { 'Authorization': `Bearer ${accessToken}` }
  }
);

const { data } = await response.json();
data.forEach(metric => {
  console.log(`${metric.name}: ${metric.values[0].value}`);
});

Error Handling Pattern

import requests

def make_threads_request(url, access_token, method='GET', **kwargs):
    """Robust error handling for Threads API requests"""
    headers = kwargs.pop('headers', {})
    headers['Authorization'] = f"Bearer {access_token}"

    try:
        response = requests.request(method, url, headers=headers, **kwargs)
        response.raise_for_status()
        return response.json()

    except requests.exceptions.HTTPError as e:
        error_data = e.response.json()
        error_code = error_data.get('error', {}).get('code')
        error_msg = error_data.get('error', {}).get('message')

        if error_code == 190:
            raise Exception(f"Invalid access token: {error_msg}")
        elif error_code == 32:
            raise Exception(f"Rate limit exceeded: {error_msg}")
        else:
            raise Exception(f"API Error {error_code}: {error_msg}")

    except requests.exceptions.RequestException as e:
        raise Exception(f"Network error: {str(e)}")

Key Concepts

Access Tokens and Permissions

  • Access Tokens: OAuth 2.0 tokens required for all API requests
  • Scopes: Define what your app can access (e.g., threads_basic, threads_content_publish, threads_manage_insights)
  • Token Expiration: Long-lived tokens (60 days) and refresh tokens for extended access

Media Types

  • TEXT: Simple text posts
  • IMAGE: Single image with optional caption
  • VIDEO: Single video with optional caption
  • CAROUSEL: Multiple images or videos in a swipeable format

Publishing Flow

  1. Container Creation: Create a media container with content
  2. Publishing: Publish the container to make it visible
  3. Two-stage process: Required for videos and carousels to allow processing time

Rate Limits

  • Rate limits vary by endpoint and access level
  • Standard rate limit: 200 calls per hour per user
  • Monitor X-Business-Use-Case-Usage header in responses
  • Implement exponential backoff for rate limit errors

Webhooks

  • Real-time notifications for events like mentions, replies, or new followers
  • Requires HTTPS endpoint for receiving notifications
  • Must validate webhook signatures for security

Reference Files

This skill includes comprehensive documentation in references/:

  • other.md - Complete Threads API documentation including:

- Authentication and authorization flows - API endpoints reference - Request/response formats - Error codes and troubleshooting - Best practices and guidelines

Use the skill's reference files when you need detailed information about specific API endpoints, parameters, or advanced features.

Working with This Skill

For Beginners

Start by understanding the authentication flow - this is the foundation of all Threads API integrations. Focus on:

  1. Setting up your Meta developer account and app
  2. Implementing OAuth 2.0 authorization
  3. Making your first API request to fetch user profile
  4. Publishing a simple text post

For Intermediate Users

Build on the basics by exploring:

  1. Media uploads (images and videos)
  2. Carousel posts for multi-image content
  3. Webhook integration for real-time updates
  4. Error handling and retry logic
  5. Rate limit management

For Advanced Users

Optimize your integration with:

  1. Insights and analytics data
  2. Batch operations for efficiency
  3. Advanced content scheduling
  4. Custom webhook event processing
  5. Multi-account management

Navigation Tips

  • Quick Reference: Use the code examples above for common tasks
  • Reference Files: Dive into references/other.md for complete API documentation
  • Authentication First: Always start with proper authentication setup
  • Test in Sandbox: Use Meta's test users and sandbox environment during development

Common Workflows

Complete Post Publishing Flow

  1. Obtain access token via OAuth flow
  2. Create media container (if using images/videos)
  3. Wait for container processing (for videos)
  4. Publish the container
  5. Retrieve post ID and insights

User Data Retrieval Flow

  1. Authenticate user
  2. Fetch user profile with required fields
  3. Retrieve user's threads with pagination
  4. Process and display content

Webhook Integration Flow

  1. Set up HTTPS endpoint
  2. Register webhook subscription
  3. Validate webhook signatures
  4. Process incoming events
  5. Respond with 200 OK status

Best Practices

  1. Security

- Never expose access tokens in client-side code - Always validate webhook signatures - Use environment variables for sensitive data - Implement token refresh before expiration

  1. Performance

- Cache API responses when appropriate - Use batch requests for multiple operations - Implement pagination for large result sets - Monitor and respect rate limits

  1. User Experience

- Provide clear error messages to users - Show loading states during API calls - Handle network failures gracefully - Request only necessary permissions

  1. Content Publishing

- Validate media URLs before uploading - Check media format requirements - Add appropriate error handling for failed uploads - Consider using alt text for accessibility

Resources

Official Documentation

Developer Tools

  • Meta App Dashboard: Configure your app and manage permissions
  • Graph API Explorer: Test API calls interactively
  • Webhook Testing: Test webhook endpoints before production

Troubleshooting

Common Issues

Authentication Errors (Code 190)

  • Check access token validity
  • Verify token hasn't expired
  • Ensure correct permissions/scopes

Rate Limit Errors (Code 32)

  • Implement exponential backoff
  • Monitor API usage
  • Consider caching responses

Media Upload Failures

  • Verify media URL is publicly accessible
  • Check file format and size requirements
  • Ensure proper media_type parameter

Webhook Not Receiving Events

  • Verify endpoint is HTTPS
  • Check webhook signature validation
  • Ensure endpoint responds with 200 OK quickly

Notes

  • This skill was generated from Meta's official Threads API documentation
  • The Threads API is part of Meta's Graph API family
  • API features and endpoints may be updated by Meta - refer to official docs for latest changes
  • Some features may require additional app review or permissions from Meta

Updating

To refresh this skill with updated documentation:

  1. Visit https://developers.facebook.com/docs/threads for the latest information
  2. Re-run the documentation scraper with updated configuration
  3. The skill will be rebuilt with current API information

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.8%
按下载量换算134

Antigravity

22.35%
按下载量换算108

Codex

19.47%
按下载量换算94

OpenCode

14.79%
按下载量换算71

windsurf

8.51%
按下载量换算41

trae

3.28%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills