Getting Started
このプラグインのインストール手順と完全なマークダウンガイドを含むセットアップコマンドをコピーしてください。
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.
インストール
「インストール」のセクションYou can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
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() Call (1 回)、アプリケーション起動時早く呼び出してください。 sandbox for testing and prod for production traffic.
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',});プラットフォーム設定
タイトル:プラットフォーム設定Getting Startedから続けて
タイトル:Getting Startedから続けてCapgoを使用している場合 Getting Started Verisoulセッションを統合するには、 @capgo/capacitor-verisoul CapgoのAPIの概要については iOSの設定 App Attestの注釈について Androidの設定 Gradleの設定 @capgo/capacitor-verisoul Capgoのプラグインチュートリアルについて