Getting Started
复制一个包含安装步骤和本插件的完整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.
bun add @capgo/capacitor-appinsightsbunx cap syncimport { CapacitorAppInsights } from '@capgo/capacitor-appinsights';API概述
名为“API概述”的部分init
名为“init”的部分初始化应用见解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
名为“setUserId”的部分初始化后设置或更新用户 ID
import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.setUserId({} as { userId: string });getState
Section titled “getState”获取当前的SDK状态
import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.getState();PanelSDKState
Section titled “PanelSDKState”export interface PanelSDKState { initCompleted: boolean; // SDK initialization status jobScheduled: boolean; // Background job scheduling status permissionAcquired: boolean; // Required permissions status}真实数据来源
Section titled “真实数据来源”本页面是由插件生成的。 src/definitions.ts当公共API上游更改时,请重新运行同步。
继续从开始使用中
继续从 Getting Started如果您正在使用 Getting Started 来规划仪表板和API操作,连接它与 使用@capgo/capacitor-appinsights 为native能力在使用@capgo/capacitor-appinsights API概述 为API概述的实现细节 介绍 为介绍的实现细节 API密钥 为API密钥的实现细节 设备 设备的实现细节