跳过内容

开始使用

GitHub

Install

安装

您可以使用我们的 AI-Assisted Setup 来安装插件。使用以下命令将 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.

如果您prefer Manual Setup,安装插件并运行以下命令,按照以下平台特定的说明:

终端窗口
bun add @capgo/capacitor-appinsights
bunx cap sync
import { CapacitorAppInsights } from '@capgo/capacitor-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
});

初始化后设置或更新用户 ID

import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.setUserId({} as { userId: string });

获取当前的SDK状态

import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';
await CapacitorAppInsights.getState();
export interface PanelSDKState {
initCompleted: boolean; // SDK initialization status
jobScheduled: boolean; // Background job scheduling status
permissionAcquired: boolean; // Required permissions status
}

本页面是由插件生成的。 src/definitions.ts当公共API上游发生变化时,请重新运行同步。

继续从开始使用中

继续从 Getting Started

如果您正在使用 Getting Started 来规划仪表板和 API 操作,连接它 使用 @capgo/capacitor-appinsights 为 native 能力在 Using @capgo/capacitor-appinsights 中 API 概述 在 API 概述 中的实现细节 介绍 在介绍中的实现细节 API 密钥 在 API 密钥 中的实现细节 设备 设备的实现细节。