-
Notifications
You must be signed in to change notification settings - Fork 1
Realtime API
Takahashi Fumiki edited this page May 24, 2023
·
2 revisions
Realtime ReportのデータをAPI経由で取得できます。取得できるディメンションおよびメトリックスはAPIドキュメントを確認してください。
デフォルトはdimensionsが country
で、 metricesが activeUsers,screenPageViews
です。
// 配列で指定します。
$request = [
'dimensions' => 'unifiedScreenName',
'metrics' => 'activeUsers',
];
// グローバル関数
$response = ga_communicator_realtime_report( $request );
// クラスメソッド
$response = Kunoichi\GaCommunicator::get_instance()->ga4_realtime_report( $request );