一键导入
zhihu-oauth
知乎 OAuth 2.0 接入指南。用于帮助开发者完成知乎 Authorization Code 授权流程,包括 APP_ID/APP_KEY 申请、授权页跳转、Token 换取、用户信息获取及社交关系接口调用。适用于 Web 应用第三方登录场景。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
知乎 OAuth 2.0 接入指南。用于帮助开发者完成知乎 Authorization Code 授权流程,包括 APP_ID/APP_KEY 申请、授权页跳转、Token 换取、用户信息获取及社交关系接口调用。适用于 Web 应用第三方登录场景。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
读取 arxiv 论文的 LaTeX 源码并生成结构化中文摘要或中文博客 JSON。当用户给出 arxiv URL(如 https://arxiv.org/abs/2601.07372)并要求阅读、总结、提炼论文观点时,使用默认工作流生成 ./knowledge/summary_{tag}.md;当用户要求生成中文博客、输出 JSON、保留图表并输出到测试工作区时,启用 read-paper 工作流。
Use when you need to design, scaffold, refactor, or document a medium-sized admin console built as an independent Vite/React SPA backed by modular Go admin APIs, Cookie session auth, and CLI-provisioned administrator accounts. Helpful for tasks like planning a new admin console, extracting reusable architecture from an existing console, adding `/api/admin/*` modules, or converting a one-off internal page into a structured admin system.
基于真实项目沉淀的 React Native 移动端 App 一键构建方案。覆盖 Expo 初始化、monorepo 共享包、鉴权路由、API 适配、主题系统与构建发布。
Build and send Feishu (Lark) interactive rich-text cards using lark_md format. Use when the user needs to: (1) construct Feishu card messages with markdown support, (2) send interactive cards via the Feishu Bot API, (3) format text with bold, inline code, lists, tables, or code blocks inside Feishu cards, or (4) convert markdown content into Feishu card elements.
腾讯云官方的邮件推送 SES 服务使用 skill。 涵盖:SMTP 发送邮件所需的全部环境变量、API 接口设计规范、验证码邮件的完整发送流程(含人机验证、频率控制、Redis 存储)。 本 skill 以网络协议 / HTTP API 接口级别描述,不绑定具体编程语言。
观猹(Watcha)OAuth2.0 接入指南。用于帮助开发者完成观猹 Authorization Code 授权流程,包括客户端申请、授权页跳转、Token 换取、用户信息获取、Token 刷新与校验。适用于 Web 应用、移动 App 等场景,支持 PKCE 扩展。
| name | zhihu-oauth |
| description | 知乎 OAuth 2.0 接入指南。用于帮助开发者完成知乎 Authorization Code 授权流程,包括 APP_ID/APP_KEY 申请、授权页跳转、Token 换取、用户信息获取及社交关系接口调用。适用于 Web 应用第三方登录场景。 |
| rootUrl | https://raw.githubusercontent.com/LSTM-Kirigaya/jinhui-skills/refs/heads/main/skills/zhihu-oauth/SKILL.md |
| tags | ["oauth","zhihu","authentication","api"] |
| model | deepseek-chat |
product-platform@zhihu.com 申请 app_id 和 app_key,并提供 redirect_uriredirect_uri 接收 code,后端换取 access_tokenaccess_token 调用用户信息接口scripts/zhihu-oauth-example.pyscripts/zhihu-oauth-example.js| 用途 | 端点 | 方法 |
|---|---|---|
| 授权页 | https://openapi.zhihu.com/authorize | GET |
| 换取 Token | https://openapi.zhihu.com/access_token | POST |
| 用户信息 | https://openapi.zhihu.com/user | GET |
| 粉丝列表 | https://openapi.zhihu.com/user/followers | GET |
| 关注列表 | https://openapi.zhihu.com/user/followed | GET |
| 关注动态 | https://openapi.zhihu.com/user/moments | GET |
app_id 和 app_key 需通过环境变量注入,严禁硬编码或提交到代码仓库state 参数防止 CSRF 攻击,并在回调时验证refresh_token,token 默认有效期 30 天redirect_uri 必须使用 HTTPS