开始
复制一个包含安装步骤和本插件的完整 Markdown 指南的设置提示。
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 助手设置来安装插件。将 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-autofill-save-password` plugin in my project.如果您更喜欢手动设置,请运行以下命令安装插件,并按照以下平台特定的说明进行操作:
bun add @capgo/capacitor-autofill-save-passwordbunx cap syncimport { 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 应用设置关联域名。
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.readPassword();Options
Section titled “选项”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
Section titled “ReadPasswordResult”export interface ReadPasswordResult { /** * The username of the password. */ username: string; /** * The password of the password. */ password: string;}本页面由插件生成 src/definitions.ts重新同步时,公众号 API 上游发生变化时,请重新同步。
继续从 Getting Started
标题:继续从 Getting Started如果您正在使用 Getting Started 来规划身份验证和帐户流程,连接它到 使用 @capgo/capacitor-autofill-save-password 为在使用 @capgo/capacitor-autofill-save-password 中的原生能力 使用 @capgo/capacitor-social-login 为在 @capgo/capacitor-social-login 中的实现细节 使用 @capgo/capacitor-passkey 为在 @capgo/capacitor-passkey 中的实现细节 @capgo/capacitor-native-生物识别 了解@capgo/capacitor-native-生物识别的实现细节 双因素认证 了解双因素认证的实现细节