Files
jackwener__opencli/docs/adapters/browser/toutiao.md
Aaron Chang 43873326c8 feat(toutiao): add articles adapter for 头条号 creator dashboard (#1148)
* feat(toutiao): add articles adapter for 头条号 creator dashboard

Add adapter to fetch article list and stats from 头条号 creator backend (mp.toutiao.com).
Supports pagination (1-4 pages) and returns title, date, status, views, reads, likes, comments.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* fix(toutiao): preserve short article titles

---------

Co-authored-by: Aaron Chang <yugenchang@future.ov>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Co-authored-by: jackwener <jakevingoo@gmail.com>
2026-04-23 17:24:42 +08:00

939 B

Toutiao (头条号创作者后台)

Mode: 🔐 Browser · Domain: mp.toutiao.com

Commands

Command Description
opencli toutiao articles List articles from the 头条号 creator dashboard with publish status and basic metrics

Usage Examples

# First page
opencli toutiao articles

# Specific page
opencli toutiao articles --page 2

# JSON output
opencli toutiao articles --page 1 -f json

Output

The command returns:

  • title
  • date
  • status
  • 展现
  • 阅读
  • 点赞
  • 评论

Prerequisites

Notes

  • Current implementation reads the creator content list page and extracts article rows from the rendered page text.
  • --page currently targets pages 1-4, matching the contributor's verified range on the creator dashboard.