CapgoのAutofill Save Password __CAPGO_KEEP_0__ リポジトリ
このプラグインのインストール手順とフルマークダウンガイドのセットアッププロンプトをコピーしてください。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-autofill-save-password`
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/autofill-save-password/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-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-passwordbunx cap syncImport
「Import」セクションimport { SavePassword } from '@capgo/capacitor-autofill-save-password';APIの概要
「APIの概要」セクションpromptDialog
「promptDialog」セクションパスワードをキーチェーンに保存します。
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.promptDialog({ username: 'your-username', password: 'your-password'});readPassword
Section titled “readPassword”iOSアプリの開発者は、iOSアプリのためのドメインを設定する必要があります。
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.readPassword();Type Reference
Type ReferenceOptions
オプション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
ReadPasswordResultexport 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要素認証を参照してください。