惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
B
Blog
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
IT之家
IT之家
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
博客园_首页
C
Check Point Blog
博客园 - 【当耐特】
美团技术团队
Last Week in AI
Last Week in AI
A
About on SuperTechFans
雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
J
Java Code Geeks
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
F
Fortinet All Blogs

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Automate Publishing to CSDN and WeChat MP Using Pl...
quarktimes · 2026-06-15 · via DEV Community

quarktimes

Overview

Today's focus was on automating article publishing to CSDN and WeChat MP (微信公众号) using Playwright, after CSDN deprecated its public Open API. Key achievements include: injecting Markdown content into CSDN's dynamic editor, handling title input quirks, implementing QR code login for WeChat MP, updating the Dev.to API publisher, and consolidating platform configs into a single YAML file. We also fixed session log capture after a Claude Code update changed the log file path.

Problems and Solutions

1. CSDN Open API Deprecation → Browser Automation

Background: In early 2026, CSDN silently shut down its public Open API. All endpoints returned 404/403. We needed a fallback to keep publishing to China's largest developer platform.

Solution: Use Playwright to simulate a real user login and article creation. The approach:

  • Launch a headless Chromium browser.
  • Navigate to CSDN's login page.
  • Perform one-time manual login via QR code.
  • Serialize cookies to csdn_cookies.json.
  • On subsequent runs, load the cookies and skip login.
  • Go to the editor, inject Markdown content via DOM manipulation, fill the title, and click publish.

Code snippet:

import asyncio
from playwright.async_api import async_playwright

async def publish_to_csdn(title: str, content_md: str):
    async with async_playwright() as p:
        browser = await p.chromium.launch(headless=True)
        context = await browser.new_context(storage_state="csdn_cookies.json" if exists else None)
        page = await context.new_page()
        await page.goto("https://mp.csdn.net/mp_blog/creation/editor")
        # Inject content
        await page.evaluate(f'''() => {{
            const editor = document.querySelector('.editor-content');
            if (editor) {{
                editor.innerHTML = `{escaped_content}`;
                editor.dispatchEvent(new Event('input', {{ bubbles: true }}));
            }}
        }}''')
        # Fill title
        await page.fill('#title-input', title)
        await page.click('button:has-text("发布")')
        await page.wait_for_url("**/mp_blog/manage/article*")
        if not exists:
            await context.storage_state(path="csdn_cookies.json")
        await browser.close()

Result: First run requires manual QR scan; subsequent runs are fully automated. The browser approach is 3–5 seconds slower than an API call, but it works.

2. Dynamic Editor Selector Debugging

Problem: CSDN's Markdown editor is not a simple <textarea>. It's a nested rich-text component with shadow DOM and dynamic elements. page.fill() and page.type() failed to inject content correctly.

Root Cause: The editor uses contenteditable but its state is managed by a frontend framework (Vue/React). Direct fill doesn't trigger the internal state update.

Solution: Use page.evaluate() to set innerHTML and manually dispatch an input event. For the title input, first focus, then simulate typing with page.keyboard.type() with a delay.

await page.click('#title-input')
await page.wait_for_timeout(300)
await page.keyboard.type(title, delay=50)

Result: Content and title injection now works reliably over 10 consecutive tests.

3. Claude Code Log Format Change

Background: After upgrading to Claude Code 2.1.143, our session capture hook found no data in ~/.claude/history.jsonl.

Root Cause: Version 2.1.143 moved per-project logs to ~/.claude/projects/<project-name>/logs/.

Solution: Update the hook to check the new path first, with a fallback to the old path. Also detect version to decide.

import pathlib
import subprocess

def get_history_path():
    version = subprocess.run(["claude", "--version"], capture_output=True, text=True).stdout
    if parse_version(version) >= (2, 1, 143):
        return pathlib.Path.home() / ".claude" / "projects" / get_current_project() / "logs"
    else:
        return pathlib.Path.home() / ".claude" / "history.jsonl"

Result: Session capture works again without data loss.

Architectural Decisions

Decision 1: Playwright over Selenium

Chosen: Playwright for browser automation.

Alternatives: Selenium WebDriver + ChromeDriver.

Why:

  • Native async support matches pipeline.
  • Built-in auto-waiting reduces time.sleep().
  • Powerful selector engine handles dynamic DOM better.
  • Community reports higher reliability for SPAs.

Trade-off: Larger package size (≈100MB), less team familiarity. But stability wins.

Decision 2: YAML Config for Platforms

Chosen: Store all platform settings (publisher class, cookie file, selectors, endpoints) in platforms.yaml.

Alternatives: Hardcode configs or use environment variables.

Why:

  • Add new platforms without touching core code.
  • Switch environments via different YAML files.
  • Easy dry-run support through config.
platforms:
  csdn:
    publisher_class: publishers.csdn.CSDNPublisher
    login_url: "https://passport.csdn.net/login"
    editor_url: "https://mp.csdn.net/mp_blog/creation/editor"
    cookie_file: "csdn_cookies.json"
  wechat_mp:
    publisher_class: publishers.wechat_mp.WeChatMPPublisher
    login_qrcode_selector: "#login-qrcode"
    cookie_file: "wechat_cookies.json"

Trade-off: Requires validation and error handling, but long-term maintenance is easier.

Decision 3: QR Login for WeChat MP

Chosen: Use Playwright to automate WeChat MP login via QR code scanning, then cache cookies.

Alternatives: Unofficial APIs (risky, may be banned).

Why:

  • WeChat offers no public write API.
  • QR login is the official method.
  • Cookie caching allows long-lived sessions after first scan.

Trade-off: Requires human intervention on first run. But can be mitigated by notification to ops team.

Key Takeaways

  1. Browser automation is a last resort when APIs fail: It works but costs time in debugging dynamic DOM. Prioritize official APIs if available.
  2. Cookie caching is essential: Serialize login state to avoid repeated manual logins. Add health checks to detect expired cookies.
  3. Version pinning matters: External tool updates can break integrations. Use version detection, adapters, or Docker to ensure stability.

Today's work proves that multi-platform publishing is feasible even without open APIs. The key is building flexible and resilient automation that can adapt to real-world changes.