返回市场
命令
login
login登录掘金(GitHub OAuth / 手机号)
Examples
xbrowser juejin login
登录掘金
xbrowser juejin login --help
publish
publish在掘金发布文章(Markdown,含外链)
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| title | string | Yes | 文章标题 |
| content | string | Yes | 文章内容(Markdown) |
| tags | string | No | 标签,逗号分隔 |
| category | string | No | 分类(前端/后端/Android/iOS 等) |
xbrowser juejin publish --help
draft
draft在掘金保存草稿
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| title | string | Yes | 文章标题 |
| content | string | Yes | 文章内容(Markdown) |
xbrowser juejin draft --help
update-profile
update-profile更新掘金个人资料(添加外链)
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| url | string | Yes | 要添加到 Profile 的网站 URL |
| bio | string | No | 个人简介文本 |
xbrowser juejin update-profile --help
fetch-articles
fetch-articles获取当前登录用户的掘金文章列表
Parameters
| Name | Type | Req | Description |
|---|---|---|---|
| limit | number | No | 获取文章数量上限 (20) |
| cursor | string | No | 分页游标(可选) |
Examples
xbrowser juejin fetch-articles
获取我的文章列表
xbrowser juejin fetch-articles --limit 50
获取前50篇文章
xbrowser juejin fetch-articles --help