| 时间 | 公众号 | 标题 | Media ID |
|---|---|---|---|
| 暂无发布记录 | |||
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=文章内容..."
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())