开始
复制一个带有安装步骤和本插件的完整 Markdown 指南的设置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-appinsights`
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/appinsights/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-appinsights` plugin in my project.如果您更喜欢手动设置,请按照以下命令安装插件,并遵循以下平台特定的说明:
bun add @capgo/capacitor-appinsightsbunx cap sync导入
标题为“导入”import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';API概述
标题为“API概述”init
标题为“init”初始化 AppInsights SDK
import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.init({} as { partnerId: string; // Provided by our business unit partnerKey: string; // Provided by our business unit });setUserId
Section titled “设置用户ID”初始化后设置或更新用户ID
import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.setUserId({} as { userId: string });getState
Section titled “获取状态”获取SDK的当前状态
import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.getState();PanelSDKState
Section titled “面板SDK状态”export interface PanelSDKState { initCompleted: boolean; // SDK initialization status jobScheduled: boolean; // Background job scheduling status permissionAcquired: boolean; // Required permissions status}本页面由插件生成 src/definitions.ts.重新同步公共API时,API上游发生变化。
继续从Getting Started
标题为“继续从Getting Started”如果您正在使用 Getting Started 来规划仪表板和API操作,连接它到 使用@capgo/capacitor-appinsights 为native能力在使用@capgo/capacitor-appinsights 中API概述 为API概述 在__CAPGO_KEEP_0__概述中实现详细信息 为《介绍》中的实现细节 API Keys 为《API Keys》中的实现细节 设备 为《设备》中的实现细节