始めてみましょう
このプラグインのインストール手順とフルマークダウンガイドを含むセットアッププロンプトをコピーします。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-rudderstack`
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/rudderstack/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.
インストール
「インストール」のセクションCapgoのAIアシスタントセットアップを使用してプラグインをインストールできます。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-rudderstack` plugin in my project.Manual Setupを使用する場合は、以下のコマンドを実行してプラグインをインストールし、以下のプラットフォーム固有の指示に従ってください。
bun add @capgo/capacitor-rudderstackbunx cap syncインポート
「インポート」セクションimport { nativePlugin } from '@capgo/capacitor-rudderstack';API オーバービュー
「API オーバービュー」セクションinitialize
「初期化」セクションRudderStack クライアントを初期化します。
メソッドは Cordova の署名を保持するため、2 番目の引数は config オブジェクトか Rudder のオプションオブジェクトのいずれかになります。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.initialize('value');identify
「ユーザー ID を識別」セクション指定されたユーザー ID に対して識別呼び出しを送信します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.identify('value');group
グループ指定されたグループIDに対してグループコールを送信します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.group('value');track
トラッキング指定されたイベント名に対してトラッキングコールを送信します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.track('value');screen
スクリーン指定されたスクリーン名に対してスクリーンコールを送信します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.screen('value');alias
エイリアス現在のユーザーを新しい識別子にエイリアスします。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.alias('value');reset
リセット現在のRudderStack ID状態をリセットします。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.reset();flush
フラッシュ即時でキュー内のイベントをフラッシュします。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.flush();putDeviceToken
デバイストークンを設定サポートされているデスティネーションにRudderStackが転送するプッシュトークンを設定します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.putDeviceToken('value');setAdvertisingId
広告IDを設定現在の契約のソース定義を参照してください。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.setAdvertisingId('value');putAdvertisingId
「putAdvertisingId」セクションカスタム広告IDの値を設定します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.putAdvertisingId('value');setAnonymousId
「setAnonymousId」セクション現在の契約のソース定義を参照してください。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.setAnonymousId('value');putAnonymousId
「putAnonymousId」セクションカスタム匿名IDの値を設定します。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.putAnonymousId('value');optOut
「optOut」セクションRudderStackのトラッキングをオフにします。
import { nativePlugin } from '@capgo/capacitor-rudderstack';
await nativePlugin.optOut(true);リファレンス
「リファレンス」のセクションRudderConfiguration
「ルーダー設定」のセクションRudderStackのネイティブSDKのサポートされている構成キー
export interface RudderConfiguration { /** * RudderStack data plane URL. */ dataPlaneUrl?: string;
/** * Number of events to batch before a flush. */ flushQueueSize?: number;
/** * Database row threshold that triggers pruning on Android and iOS. */ dbCountThreshold?: number;
/** * Server config refresh interval in hours. */ configRefreshInterval?: number;
/** * RudderStack log verbosity. */ logLevel?: RudderLogLevelValue;
/** * Sleep timeout / sleep count used by the native SDK. */ sleepTimeOut?: number;
/** * Android only. Lets the native SDK collect the advertising identifier automatically. */ autoCollectAdvertId?: boolean;
/** * Tracks `Application Installed`, `Application Updated`, and `Application Opened` automatically. */ trackLifecycleEvents?: boolean;
/** * RudderStack control plane URL. */ controlPlaneUrl?: string;
/** * Enables automatic screen tracking where supported by the native SDK. */ recordScreenViews?: boolean;
/** * Ignored in this Capacitor port. * * The Cordova SDK uses this field to bootstrap native destination factories from companion plugins. * Those extension packages are not implemented in this first Capacitor release. */ factories?: any[];}RudderOptions
「ルーダーオプション」のセクションRudderStackのオプション
export interface RudderOptions { /** * External identifiers forwarded with the event. */ externalIds?: Record<string, string>;
/** * Destination enablement flags keyed by integration name. */ integrations?: Record<string, boolean>;}RudderTraits
「ルーダートレイト」のセクションルーダートレイトで受け入れるトレイト identify そして group.
export type RudderTraits = Record<string, any>;RudderProperties
RudderPropertiesセクション受け入れるプロパティペイロード track と screen.
export type RudderProperties = Record<string, any>;PluginVersionResult
PluginVersionResultセクションプラグインバージョンペイロード
export interface PluginVersionResult { /** * Version identifier returned by the platform implementation. */ version: string;}RudderLogLevelValue
RudderLogLevelValueセクションログレベル値
export type RudderLogLevelValue = 0 | 1 | 2 | 3 | 4 | 5;ソースオブトゥルースセクション
コピーこのページはプラグインから生成されます。 src/definitions.ts. 同期を再実行してください。 公開 API がアップストリームで変更されたとき。
Getting Started から続けてください。
タイトル "Getting Started から続けてください。"あなたが使用している場合 Getting Started ダッシュボードと API の計画と実行を目的とした場合、API を接続してください。 Using @capgo/capacitor-rudderstack Using @capgo/capacitor-rudderstack のネイティブ機能のために API Overview API Overview の実装詳細のために Introduction 実装の詳細については、Introductionを参照してください。 API キー 実装の詳細については、API キー、 デバイス 実装の詳細については、デバイスを参照してください。