Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
feat(docs): Add slider verify help
Browse files Browse the repository at this point in the history
  • Loading branch information
MisaLiu committed Apr 29, 2024
1 parent fd817e7 commit 751cd82
Show file tree
Hide file tree
Showing 8 changed files with 59 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/.vuepress/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@ export default navbar([
prefix: "/config/",
link: "/config/",
},
{
text: "使用帮助",
icon: "circle-info",
prefix: "/help/",
link: "/help/",
},
]);
13 changes: 13 additions & 0 deletions docs/.vuepress/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,19 @@ export default sidebar({
prefix: 'config/',
icon: 'file',
link: 'config/'
},
{
text: '使用帮助',
prefix: 'help/',
icon: 'circle-info',
link: 'help/',
children: [
{
text: '滑块验证',
icon: 'sliders',
link: 'slider-verify',
},
]
}
],
});
10 changes: 10 additions & 0 deletions docs/help/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
icon: circle-info
---
# 使用帮助

本章节将集合一些 NapCatReforged 的使用帮助文档供用户参考。

## 章节导航

* [滑块验证帮助](./slider-verify.md)
Binary file added docs/help/images/slider_copy_success_request.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/help/images/slider_napcat_url.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/help/images/slider_prepare.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions docs/help/slider-verify.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
icon: sliders
---
# 滑块验证帮助

本页将告诉您如何通过滑块验证。

## 准备工作

首先打开您的浏览器(本例将使用 Chrome 浏览器作为示例),创建一个新的标签页,然后按下键盘的 <kbd>F12</kbd> 或右键页面选择「检查」或「开发者模式」打开调试控制台。

接着,在弹出的调试控制台中,选择「网络(Network)」选项卡,然后选中「Fetch/XHR」过滤器即可。

![Chrome 浏览器打开调试控制台](./images/slider_prepare.png)

## 通过滑块验证

回到 NapCatReforged,复制其提供的滑块验证链接,将其复制到刚才打开调试控制台的浏览器标签页中并打开。

![NapCatReforged 的滑块验证提示](./images/slider_napcat_url.png)

然后正常进行滑块验证。验证完成后,在调试控制台的请求列表中选择名为 `cap_union_new_verify` 的请求,然后在弹出的页面中选择「预览」选项卡。

![选择滑块验证的请求](./images/slider_select_success_request.png)

接着,我们右键该选项卡中内容的第一行,然后在弹出的菜单中选择「复制 object」将其内容复制到剪贴板中。

![复制滑块验证的请求](./images//slider_copy_success_request.png)

然后,将刚才复制的内容粘贴到 NapCatReforged 指定的文件中并保存,等待 NapCatReforged 进一步处理即可。

0 comments on commit 751cd82

Please sign in to comment.