Mixpost is a self-hosted social media management software that helps you schedule and manage your social media content across multiple platforms including Facebook, Twitter/X, Instagram, LinkedIn, Pinterest, TikTok, YouTube, Mastodon, Google Business Profile, Threads, Bluesky, and more.
Mixpost 是一款自托管的社交媒体管理软件,可帮助您在多个平台(包括 Facebook、Twitter/X、Instagram、LinkedIn、Pinterest、TikTok、YouTube、Mastodon、Google Business Profile、Threads、Bluesky 等)上安排和管理社交媒体内容。
bash
curl -X GET $MIXPOST_URL/api/ping \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/accounts \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/accounts/:accountUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/media?limit=50 \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/media/:mediaUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X POST $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/media \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json \
-F file=@/path/to/your/file.png
bash
curl -X PUT $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/media/:mediaUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Content-Type: application/json \
-H Accept: application/json \
-d {
alt_text: 用于无障碍访问的替代文本
}
bash
curl -X DELETE $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/media \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Content-Type: application/json \
-H Accept: application/json \
-d {
items: [media-id-1, media-id-2]
}
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/tags \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/tags/:tagUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X POST $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/tags \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Content-Type: application/json \
-H Accept: application/json \
-d {
name: 市场营销,
hex_color: #FF5733
}
bash
curl -X PUT $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/tags/:tagUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Content-Type: application/json \
-H Accept: application/json \
-d {
name: 更新后的标签名称,
hex_color: #00FF00
}
bash
curl -X DELETE $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/tags/:tagUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/posts?limit=50&status=scheduled&page=1 \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
查询参数:
bash
curl -X GET $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/posts/:postUuid \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Accept: application/json
bash
curl -X POST $MIXPOSTURL/api/$MIXPOSTWORKSPACE_UUID/posts \
-H Authorization: Bearer $MIXPOSTACCESSTOKEN \
-H Content-Type: application/json \
-H Accept: application/json \
-d {
schedule: true,
date: 2024-12-25,
time: 10:00,
timezone: America/New_York,
accounts: [1, 2],
tags: [1],
versions: [
{
account_id: 0,
is_original: true,
content: [
{
body: 来自 Mixpost API 的问候!,
media: [1, 2],
url: https://example.com
}
],
options: {}
}
]
}
帖子选项:
平台特定选项:
json
{
options: {
facebook_page: {
type: post // post(帖子)、reel(短视频)、story(故事)
},
instagram: {
type: post // post(帖子)、reel(短视频)、story(故事)
},
linkedin: {
visibility: PUBLIC // PUBLIC(公开)、CONNECTIONS(仅好友)
},
mastodon: {
sensitive: false // 布尔值
},
pinterest: {
link: null, // null | 字符串
title: , // 字符串
boards: {
account-1: 971672010430333260 // 键 account-* 是您 Pinterest 账户的 ID
}
},
youtube: {
title: null, // null | 字符串
status: public // public(公开)、private(私密)、unlisted(不公开列出)
},
gbp: { // Google Business Profile
type: post, // post(帖子)、offer(优惠)、event(活动)
button: NONE, // NONE(无)、BOOK(预订)、ORDER(
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 mixpost-1776366969 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 mixpost-1776366969 技能
skillhub install mixpost-1776366969
文件大小: 3.02 KB | 发布时间: 2026-4-17 15:00