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-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.
インストール
「インストール」というタイトルのセクションbun add @capgo/capacitor-autofill-save-passwordbunx cap syncインポート
「インポート」というタイトルのセクションimport { SavePassword } from '@capgo/capacitor-autofill-save-password';API の概要
API の概要のセクションpromptDialog
セクションのタイトル “__CAPGO_KEEP_0__ の概要”セクションのタイトル “promptDialog”
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.promptDialog({ username: 'your-username', password: 'your-password'});readPassword
コピーセクションのタイトル “readPassword”
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.readPassword();コピー
型の参照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
セクション「パスワードを読み取る結果」export interface ReadPasswordResult { /** * The username of the password. */ username: string; /** * The password of the password. */ password: string;}真実の源
セクション「真実の源」このページはプラグインの src/definitions.tsAPIがアップストリームで変更された場合に、パブリックの再同期を行うようにしてください。
Getting Startedから続けてください
セクション「Getting Startedから続けてください」あなたが Getting Started を使用して認証とアカウントフローの計画を行っている場合、接続してください。 native capability in @capgo/capacitor-autofill-save-password を使用します。 native capability in Using @capgo/capacitor-autofill-save-password を使用します。 @capgo/capacitor-social-login @capgo/capacitor-social-login の実装詳細 @capgo/capacitor-passkey @capgo/capacitor-passkey の実装詳細 @capgo/capacitor-native-biometric @capgo/capacitor-native-biometric の実装詳細 2要素認証 2要素認証の実装詳細