threads-post

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Threads Post

Threads 帖子

Create and schedule posts on Meta's Threads using the Publora MCP server. Supports auto-threading for long content, image carousels (2-10 images), and reply control settings.
通过Publora MCP服务器创建并调度Meta的Threads帖子。支持长内容自动分帖、图片轮播(2-10张图片)以及回复控制设置。

Prerequisites

前提条件

Plans: Free Starter (15 posts/month), Pro, Premium
套餐: 免费入门版(每月15条帖子)、专业版、高级版

Getting Started

开始使用

  1. Create account at publora.com/register (free)
  2. Connect Threads via Instagram OAuth in Publora Dashboard
  3. Get API key at publora.com/settings/api
  4. Configure MCP in Claude Desktop (
    ~/.claude/claude_desktop_config.json
    ):
json
{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
  1. publora.com/register创建账户(免费)
  2. 通过Publora控制面板中的Instagram OAuth连接Threads
  3. publora.com/settings/api获取API密钥
  4. 在Claude Desktop中配置MCP(
    ~/.claude/claude_desktop_config.json
    ):
json
{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

REST API Fallback

REST API 备选方案

If MCP is unavailable, use the REST API directly:
Base URL:
https://api.publora.com/api/v1
Authentication:
x-publora-key
header
bash
undefined
如果MCP不可用,可直接使用REST API:
基础URL:
https://api.publora.com/api/v1
身份验证:
x-publora-key
请求头
bash
undefined

Get connected platforms

获取已连接平台

curl -X GET "https://api.publora.com/api/v1/platform-connections"
-H "x-publora-key: sk_your_api_key"
curl -X GET "https://api.publora.com/api/v1/platform-connections"
-H "x-publora-key: sk_your_api_key"

Create a post

创建帖子

curl -X POST "https://api.publora.com/api/v1/create-post"
-H "x-publora-key: sk_your_api_key"
-H "Content-Type: application/json"
-d '{ "platforms": ["threads-12345"], "content": "Your post content", "scheduledTime": "2026-03-25T10:00:00Z" }'

**Platform ID Format:** `threads-{id}` (from `/platform-connections`)

📖 **Docs:** [docs.publora.com](https://docs.publora.com)
curl -X POST "https://api.publora.com/api/v1/create-post"
-H "x-publora-key: sk_your_api_key"
-H "Content-Type: application/json"
-d '{ "platforms": ["threads-12345"], "content": "Your post content", "scheduledTime": "2026-03-25T10:00:00Z" }'

**平台ID格式:** `threads-{id}`(来自`/platform-connections`接口)

📖 **文档:** [docs.publora.com](https://docs.publora.com)

Plan Limits

套餐限制

PlanPosts/monthPrice
Starter15Free
Pro100/account$2.99/account/month
Premium500/account$9.99/account/month
套餐每月帖子数量价格
入门版15免费
专业版100/账户$2.99/账户/月
高级版500/账户$9.99/账户/月

Platform Limits

平台限制

FeatureLimit
Characters per post500
Hashtags1 per post maximum
Links5 per post maximum
Images per carousel2-10
Image size8 MB
Image formatsJPEG, PNG (WebP auto-converted)
Video duration5 minutes
Video size500 MB
Video formatsMP4, MOV
Posts per day250
Replies per day1,000
功能限制
单帖字符数500
话题标签最多1个/帖
链接最多5个/帖
轮播图片数量2-10
图片大小8 MB
图片格式JPEG、PNG(WebP自动转换)
视频时长5分钟
视频大小500 MB
视频格式MP4、MOV
每日发帖数250
每日回复数1,000

Available Tools

可用工具

create_post

create_post

Create a new Threads post or thread.
Parameters:
  • platforms
    : Array with your Threads connection ID (e.g.,
    ["threads-12345"]
    )
  • content
    : Post text (auto-threads if over 500 chars)
  • scheduledTime
    : ISO 8601 datetime (required - for immediate posting, use current time + 1 minute)
创建新的Threads帖子或分帖线程。
参数:
  • platforms
    : 包含你的Threads连接ID的数组(例如:
    ["threads-12345"]
  • content
    : 帖子文本(超过500字符时自动分帖)
  • scheduledTime
    : ISO 8601格式的日期时间(必填 - 若要立即发布,使用当前时间+1分钟)

get_upload_url

get_upload_url

Get a presigned URL to upload images.
获取用于上传图片的预签名URL。

list_posts / update_post / delete_post

list_posts / update_post / delete_post

Manage your scheduled and draft posts.
管理已调度和草稿帖子。

Auto-Threading

自动分帖

When content exceeds 500 characters, Publora automatically creates a connected thread:
  1. Smart splitting: Content is split at paragraph breaks (
    \n\n
    ), then sentence boundaries (
    . 
    ,
    ! 
    ,
    ? 
    ), then word boundaries
  2. Auto-numbering: Each part gets
    (1/N)
    ,
    (2/N)
    , etc. at the end
  3. Reply chain: Posts are connected using Threads'
    reply_to_id
    parameter
当内容超过500字符时,Publora会自动创建关联的分帖线程:
  1. 智能拆分:内容先按段落分隔符(
    \n\n
    )拆分,再按句子边界(
    . 
    ! 
    ? 
    )拆分,最后按单词边界拆分
  2. 自动编号:每个部分末尾会添加
    (1/N)
    (2/N)
    等编号
  3. 回复链:帖子通过Threads的
    reply_to_id
    参数关联

Manual Thread Breaks

手动分帖分隔符

Use
---
on its own line to force a thread break:
This is my first post in the thread.

---

This is my second post in the thread.

---

And this is my third post!
Or use explicit markers
[1/3]
,
[2/3]
,
[3/3]
(square brackets are preserved as written).
单独一行使用
---
强制分帖:
This is my first post in the thread.

---

This is my second post in the thread.

---

And this is my third post!
或者使用显式标记
[1/3]
[2/3]
[3/3]
(方括号会按原样保留)。

Reply Control

回复控制

Control who can reply to your posts via REST API
platformSettings
:
ValueDescription
""
(empty)
Default platform behavior (anyone can reply)
"everyone"
Explicitly allow anyone to reply
"accounts_you_follow"
Only accounts you follow can reply
"mentioned_only"
Only mentioned accounts can reply
Note:
platformSettings
is not available via MCP - use REST API for reply control.
通过REST API的
platformSettings
参数控制谁可以回复你的帖子:
描述
""
(空值)
平台默认行为(任何人都可回复)
"everyone"
明确允许任何人回复
"accounts_you_follow"
仅你关注的账户可回复
"mentioned_only"
仅被提及的账户可回复
注意:
platformSettings
无法通过MCP使用 - 需使用REST API进行回复控制。

Important Restrictions

重要限制

  1. Single hashtag limit: Threads allows maximum 1 hashtag per post. Additional hashtags are ignored by the platform.
  2. No post editing: Once posted, Threads posts cannot be edited via API. Delete and repost if needed.
  3. Video carousels not supported: Publora's carousel implementation supports images only. Standalone video posts work normally.
  4. Multi-threaded posts temporarily unavailable: Content splitting into multiple connected replies is temporarily disabled. Single posts and carousels continue to work.
  1. 单话题标签限制:Threads允许每帖最多1个话题标签,额外的标签会被平台忽略。
  2. 无法编辑帖子:帖子发布后,无法通过API编辑Threads帖子。如需修改,请删除后重新发布。
  3. 不支持视频轮播:Publora的轮播功能仅支持图片。独立视频帖子可正常使用。
  4. 多帖线程暂时不可用:将内容拆分为多个关联回复的功能暂时禁用。单帖和轮播功能可正常使用。

Examples

示例

Simple Text Post

简单文本帖子

Post this to Threads:
"Just discovered an amazing productivity hack that saved me 2 hours today. The key is batching similar tasks together."
发布到Threads:
"Just discovered an amazing productivity hack that saved me 2 hours today. The key is batching similar tasks together."

Image Carousel

图片轮播

Create a Threads carousel with these 5 product evolution screenshots.
Caption: "From concept to launch - our 6-month journey. #buildinpublic"
Note: Requires 2-10 images. Videos in carousels are not supported.
创建包含这5张产品演进截图的Threads轮播。
配文:"From concept to launch - our 6-month journey. #buildinpublic"
注意:需要2-10张图片。轮播中不支持视频。

Long-Form Thread

长文分帖线程

Create a Threads thread from this content:
"Thread: 7 mistakes I made as a first-time founder

---

1. Hiring too fast. We went from 2 to 15 in 3 months. The culture suffered.

---

2. Ignoring unit economics. Revenue felt great until we calculated CAC..."
将以下内容创建为Threads分帖线程:
"Thread: 7 mistakes I made as a first-time founder

---

1. Hiring too fast. We went from 2 to 15 in 3 months. The culture suffered.

---

2. Ignoring unit economics. Revenue felt great until we calculated CAC..."

Scheduled Post

定时帖子

Schedule this for tomorrow at 10 AM:
"Monday motivation: The best time to start was yesterday. The second best time is now."
调度到明天上午10点发布:
"Monday motivation: The best time to start was yesterday. The second best time is now."

Best Practices

最佳实践

  1. Hook first: First 2 lines determine engagement - make them count
  2. Optimal length: 100-250 characters for single posts perform well
  3. Native content: Original, conversational posts are rewarded
  4. Single hashtag: Use one highly relevant hashtag (platform limit)
  5. No edit option: Double-check content before posting
  1. 开头抓眼球:前两行决定互动量 - 务必重视
  2. 最佳长度:单帖100-250字符表现最佳
  3. 原生内容:原创、口语化的帖子会获得更多推荐
  4. 单个话题标签:使用一个高度相关的话题标签(平台限制)
  5. 无编辑选项:发布前务必仔细检查内容

Timing

发布时机

  • Best times: 7-9 AM, 12-1 PM, 7-9 PM in target timezone
  • Frequency: 1-3 posts per day for growth
  • Consistency: Regular posting signals active account
  • 最佳时段:目标时区的7-9点、12-13点、19-21点
  • 发布频率:每日1-3帖以促进增长
  • 一致性:定期发帖表明账户处于活跃状态

Engagement

互动技巧

  • Reply to comments within first hour
  • Cross-reference your Instagram (accounts are linked)
  • Use relevant topics/keywords for discovery
  • 评论发布后1小时内回复
  • 关联你的Instagram账户(两者已绑定)
  • 使用相关话题/关键词提升曝光

Troubleshooting

故障排除

ErrorCauseSolution
"Account not connected"Threads/Instagram OAuth expiredReconnect via Publora dashboard
"Content too long"Post exceeds 500 chars and threading failedManually add
---
breaks
"Media upload failed"Wrong format or sizeCheck: images < 8 MB, JPEG/PNG only
"Carousel requires 2-10 items"Wrong number of imagesEnsure 2-10 images for carousel
250 posts/day exceededRate limit reachedWait 24 hours
错误原因解决方案
"Account not connected"Threads/Instagram OAuth已过期通过Publora控制面板重新连接
"Content too long"帖子超过500字符且自动分帖失败手动添加
---
分隔符
"Media upload failed"格式或大小错误检查:图片小于8MB,仅支持JPEG/PNG
"Carousel requires 2-10 items"图片数量错误确保轮播包含2-10张图片
每日发帖数超过250达到速率限制等待24小时