skillhub/document/docs/04-developer/api/authenticated.md
tww 3e2f25a42f feat(docs): initialize Docusaurus documentation website
- Initialize Docusaurus project structure
- Add Chinese documentation (all sections)
- Add English documentation (getting started section)
- Custom iFlytek blue theme styling
- Enterprise value focused homepage design
2026-03-15 18:27:32 +08:00

1.5 KiB

title sidebar_position description
认证 API 3 需要认证的 API

认证 API

认证相关

获取当前用户

GET /api/v1/auth/me

登出

POST /api/v1/auth/logout

技能发布

POST /api/v1/publish
Content-Type: multipart/form-data

file: <zip-file>
namespace: <namespace-slug>

收藏

POST /api/v1/skills/{namespace}/{slug}/star
DELETE /api/v1/skills/{namespace}/{slug}/star

评分

POST /api/v1/skills/{namespace}/{slug}/rating
Content-Type: application/json

{
  "score": 5
}

标签管理

GET /api/v1/skills/{namespace}/{slug}/tags
PUT /api/v1/skills/{namespace}/{slug}/tags/{tagName}
DELETE /api/v1/skills/{namespace}/{slug}/tags/{tagName}

我的资源

GET /api/v1/me/stars
GET /api/v1/me/skills

命名空间管理

POST /api/v1/namespaces
PUT /api/v1/namespaces/{slug}
GET /api/v1/namespaces/{slug}/members
POST /api/v1/namespaces/{slug}/members
PUT /api/v1/namespaces/{slug}/members/{userId}/role
DELETE /api/v1/namespaces/{slug}/members/{userId}

审核

GET /api/v1/namespaces/{slug}/reviews
POST /api/v1/namespaces/{slug}/reviews/{id}/approve
POST /api/v1/namespaces/{slug}/reviews/{id}/reject

提升申请

POST /api/v1/namespaces/{slug}/skills/{skillId}/promote

API Token

POST /api/v1/tokens
GET /api/v1/tokens
DELETE /api/v1/tokens/{id}

下一步