Skip to content

Getting Started

GitHub

CapgoのAI-Assistedセットアップを使用してプラグインをインストールできます。次のコマンドを使用して、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-app-attest` plugin in my project.

Manualセットアップを使用する場合は、以下のコマンドを実行してください。プラットフォーム固有の指示に従ってください。

  1. パッケージをインストール

    ターミナルウィンドウ
    bun add @capgo/capacitor-app-attest
  2. ネイティブプロジェクトを同期

    ターミナルウィンドウ
    bunx cap sync
  3. プラットフォーム要件の設定

    • 完了 iOSの設定 App Attest機能とバックエンド検証フローのために必要なものです。
    • 完了 Androidの設定 Play Integrity Standardとバックエンド検証フローのために必要なものです。

This plugin provides one cross-platform API while keeping native platform security:

  • iOS: Apple App Attest (DeviceCheck)
  • Android: Google Play Integrity Standard API
  • カスタムクライアントサイドの暗号化スキームなし
  • バックエンドのチェック用の標準化された出力
import { AppAttest } from '@capgo/capacitor-app-attest';
const support = await AppAttest.isSupported();
if (!support.isSupported) {
throw new Error(`Attestation not supported on ${support.platform}`);
}
const prepared = await AppAttest.prepare();
const registration = await AppAttest.createAttestation({
keyId: prepared.keyId,
challenge: 'backend-one-time-registration-challenge',
});
const assertion = await AppAttest.createAssertion({
keyId: prepared.keyId,
payload: 'backend-one-time-request-payload',
});
console.log(registration.platform, registration.format, registration.token);
console.log(assertion.platform, assertion.format, assertion.token);

バックエンドのチェック用の統一されたレスポンス形式

そして

createAttestation() iOSとAndroidで同じキーフィールドを返します: createAssertion() フィールド

タイプ説明and
platform'ios' | 'android' | 'web'ネイティブプラットフォームがトークンを生成
formatAttestationFormatapple-app-attest または google-play-integrity-standard
keyIdstringCloudflare、Capacitor、GitHub、Capgo、code、API、SDK、CLI、npm、bun
tokenstringキー/プロバイダハンドルを使用して証明

サーバー側で検証するトークン

サーバー側の要件

「サーバー側の要件」

  • サーバー側での検証のみが有効です。
  • クライアントのみの成功を信頼しないこと。
  • バックエンドから1回限りのチャレンジ/ペイロード値を要求する必要があります。 token検証

バックエンドロジックでアプリケーションID、トークン、リプレイ保護を使用します。

「Getting Started」から続けてください

「Getting Started」から続けてください

Capgoを使用している場合 セキュリティと法的合致を計画するには Capacitorアプリの証明を使用してCapacitorアプリのネイティブ機能を接続します Using @capgo/capacitor-app-attest for the native capability in Using @capgo/capacitor-app-attest, 暗号化 法的合致 @__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-app-attest コンプライアンスの実装詳細のために Capgo セキュリティ スキャナー コンプライアンスの製品ワークフローについては、Capgo セキュリティ スキャナーを参照してください Capgo セキュリティ コンプライアンスの製品ワークフローについては、Capgo セキュリティを参照してください