weibo-hub

Fetch Weibo hot searches, feeds, and user data via authenticated HTTP sessions.

361|58|Updated Mar 1, 2026
One-click install
npx skills add https://github.com/OpenMinis/MinisSkills --skill weibo-hub
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: weibo-hub
Source: https://github.com/OpenMinis/MinisSkills/tree/main/weibo-hub
Command: npx skills add https://github.com/OpenMinis/MinisSkills --skill weibo-hub

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires httpx, and includes scripts (resource) components.

What problem does it solve?

This skill enables programmatic access to Weibo data by making HTTP requests with browser-derived cookies, eliminating manual login steps and enabling automated workflows.

Core Features & Use Cases

  • Fetch hot search lists, full hot bands, and real-time search suggestions without requiring an active login.
  • Retrieve timelines (hot and home feeds), perform keyword searches, and drill into details, comments, reposts, and user profiles with optional pagination.
  • Persist credentials securely on disk and reuse them across sessions, with TTL warnings and automatic re-auth guidance for expired cookies.

Quick Start

First capture Weibo cookies with browser_use get_cookies and save them using WeiboClient.setup_credential, then instantiate WeiboClient and call its methods (hot_search, hot_feed, search, detail, me, etc.) to fetch data.

Frequently Asked Questions about weibo-hub

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fetch Weibo data using HTTP with cookie authentication?

To fetch Weibo data over HTTP, capture browser cookies using browser_use get_cookies, persist them with WeiboClient.setup_credential, then instantiate WeiboClient to call endpoints like hot_search, hot_feed, and search for data retrieval.

Can I retrieve Weibo hot searches and feeds without an active login?

Yes, you can retrieve Weibo hot searches, full hot bands, and real-time search suggestions without an active login, though timelines and user profiles require authenticated cookie sessions.

Does this Weibo API client handle expired credentials and session persistence?

Yes, the Weibo API client persists credentials securely on disk for reuse across sessions and provides TTL warnings with automatic re-auth guidance for expired cookies, implementing robust retry logic for reliable automated tasks.

What Weibo data types can I retrieve programmatically for social media automation?

For social media automation, you can retrieve Weibo hot searches, trends, hot and home feed timelines, keyword search results, post details, comments, reposts, and user profiles with optional pagination.

Why does Weibo automation require browser-derived cookies instead of direct login?

Weibo automation uses browser-derived cookies to eliminate manual login steps, enabling HTTP requests to authenticate directly and bypass interactive login barriers for seamless automated workflows.