// the find
cooderl/wewe-rss
🤗更优雅的微信公众号订阅方式,支持私有化部署、微信公众号RSS生成(基于微信读书)
WeWe RSS converts WeChat Official Accounts into RSS feeds by piggybacking on the WeChat Reading (微信读书) API. It's a self-hosted NestJS + Prisma backend with a React frontend, targeting Chinese developers who want to follow public accounts in a standard RSS reader instead of the WeChat app.
The v2 interface swap to WeChat Reading's API is genuinely clever — it's more stable than direct public account scraping. Supporting both MySQL and SQLite with separate Prisma schemas is the right call for a self-hosted tool: SQLite for hobbyists, MySQL for anyone who cares about reliability. Title include/exclude filtering on the feed endpoints is a practical feature that most RSS bridges skip. OPML export is there, which means you can actually migrate away.
API requests are routed through a third-party relay at weread.111965.xyz — the README says it doesn't store data, but you're taking that on faith while sending your WeChat session credentials through it. The account throttling story is rough: add too many feeds and you get 'blacklisted' for 24 hours with no programmatic detection, just vibes-based rate limiting on your end. SQLite is officially marked 'not recommended' but still shipped and documented, which means people will use it and hit concurrency bugs under any real load. There are no tests that do anything meaningful — the spec files exist but the test suite is essentially empty.