开始使用
复制一个包含安装步骤和此插件的完整Markdown指南的设置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-verisoul`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/verisoul/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
安装
安装您可以使用我们的AI辅助设置来安装插件。使用以下命令将Capgo技能添加到您的AI工具中:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins然后使用以下提示:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-verisoul` plugin in my project.如果您更喜欢手动设置,请运行以下命令并按照以下平台特定的说明进行操作:
npm install @capgo/capacitor-verisoulnpx cap sync配置Verisoul
配置Verisoul调用 configure() 一次,早在您的应用程序启动时使用 sandbox 用于测试和 prod 用于生产流量
import { Verisoul } from '@capgo/capacitor-verisoul';
await Verisoul.configure({ environment: 'prod', projectId: 'YOUR_PROJECT_ID',});获取会话 ID
标题:获取会话 ID当 Verisoul 已收集足够的本机信号后,请请求会话 ID 并将其发送到您的后端。您的后端应调用 Verisoul 服务器端 API 进行风险评估。
const { sessionId } = await Verisoul.getSessionId();
await fetch('/api/risk/verisoul', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ sessionId }),});在帐号变更时重置
调用标题:在帐号变更时重置 reinitialize() 当用户上下文发生变化,例如注销后重新登录另一个账户。
await Verisoul.reinitialize();Android触摸信号
Android触摸信号在 Android 上,向您的应用传递触摸事件以收集 Verisoul 触摸模式。
await Verisoul.recordTouchEvent({ x: 120, y: 240, action: 'down',});平台设置
iOS设置- 涵盖 App Attest 权限说明。 Android设置
- 涵盖 Verisoul Maven 仓库和权限。 复制到剪贴板
继续从开始使用
标题:继续从开始使用如果您正在使用 开始使用 将Verisoul会话与 @capgo/capacitor-verisoul 了解API的概述 iOS设置 App Attest注意事项 Android设置 Gradle设置 使用@capgo/capacitor-verisoul 为插件教程。