メインコンテンツにスキップ

Getting Started

GitHub

CapgoのAI-Assisted Setupを使用してプラグインをインストールできます。AIツールにCapgoスキルを追加するには、以下のコマンドを実行してください。

ターミナル画面
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.

Manual Setupを使用する場合は、以下のコマンドを実行してプラグインをインストールし、以下のプラットフォーム固有の指示に従ってください。

ターミナルウィンドウ
bun add @capgo/capacitor-appinsights
bunx cap sync
import { CapacitorAppInsights } from '@capgo/capacitor-appinsights';

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
}

__CAPGO_KEEP_0__のパブリック リソースがアップストリームで変更された場合に再度同期を実行する src/definitions.ts. Re-run the sync when the public API changes upstream.

Capacitorを使用している場合 Getting Started APIのダッシュボードとAPIの操作を計画するには、CapacitorをAPIに接続します。 Capacitorを使用して、@capgo/capacitor-appinsightsを使用します。 Capacitorのネイティブ機能を使用するには、@capgo/capacitor-appinsightsを使用します。 APIの概要 APIの実装詳細 Capacitorの概要 Capacitorの実装詳細 APIのキー APIの実装詳細については、 デバイス __CAPGO_KEEP_0__の実装詳細については、デバイス.