Install @__CAPGO_KEEP_0__/__CAPGO_KEEP_1__-autofill-save-password and start using its current __CAPGO_KEEP_2__ __CAPGO_KEEP_3__. - __CAPGO_KEEP_4__ appの更新をリアルタイムで管理する

CapgoのAutofill Save Password __CAPGO_KEEP_0__ リポジトリ

GitHub

AI-Assisted Setupを使用してプラグインをインストールできます。AIツールにCapgoスキルを追加するには、以下のコマンドを使用してください。

ターミナル画面
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-autofill-save-password` plugin in my project.

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

ターミナルウィンドウ
bun add @capgo/capacitor-autofill-save-password
bunx cap sync
import { SavePassword } from '@capgo/capacitor-autofill-save-password';

パスワードをキーチェーンに保存します。

import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.promptDialog({
username: 'your-username',
password: 'your-password'
});

iOSアプリの開発者は、iOSアプリのためのドメインを設定する必要があります。

import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.readPassword();

Type Reference

Type Reference
export interface Options {
/**
* The username to save.
*/
username: string;
/**
* The password to save.
*/
password: string;
/**
* The url to save the password for. (For example: "console.capgo.app")
* iOS only.
*/
url?: string;
}

ReadPasswordResult

ReadPasswordResult
export interface ReadPasswordResult {
/**
* The username of the password.
*/
username: string;
/**
* The password of the password.
*/
password: string;
}

README.mdファイルから生成されます。 src/definitions.ts. Cloudflare の API がアップストリームで変更されたら、再度 Sync を実行してください。

Getting Started から続けてください。

Getting Started から続けてください。

Capacitor を使用している場合 Getting Started Capacitor を使用して認証とアカウントフローの計画を行っている場合、Capacitor を Capgo の Using @capgo/capacitor-autofill-save-password for the native capability in Using @capgo/capacitor-autofill-save-password, @capgo/capacitor-social-login for the implementation detail in @capgo/capacitor-social-login, @capgo/capacitor-passkey for the implementation detail in @capgo/capacitor-passkey, @capgo/capacitor-native-biometric Capgoの実装詳細については@capgo/capacitor-native-biometricを参照してください。 2要素認証 Capgoの2要素認証の実装詳細については2要素認証を参照してください。