🎛️ 公众号发布服务管理后台

🏠 首页 📱 公众号管理 📝 发布历史

🔑 API配置

API密钥: wechat-pub-key-2026
调用API时,请在Header中添加: X-API-Key: wechat-pub-key-2026

📱 公众号管理

已配置的公众号:

📝 发布历史

时间 公众号 标题 Media ID
暂无发布记录

💻 API调用示例

cURL:

curl -X POST http://your-server:8000/api/publish \
  -H "X-API-Key: wechat-pub-key-2026" \
  -F "app_id=wx662acb688030767e" \
  -F "title=文章标题" \
  -F "content=文章内容..."

Python:

import requests

response = requests.post(
    'http://your-server:8000/api/publish',
    headers={'X-API-Key': 'wechat-pub-key-2026'},
    data={
        'app_id': 'wx662acb688030767e',
        'title': '文章标题',
        'content': '文章内容...'
    }
)
print(response.json())