# アクティビティトラッキング

## 概要

PushSDK は、購読者がアプリケーション内で閲覧しているコンテンツの種類を追跡できるメソッドを提供します。この情報はその後、Pushly プラットフォームで、訪問回数と訪問の新しさに基づくタグ付きの特定の URL または画面を訪問した購読者のコホートを作成するために使用できます。

例: 「過去 30 日間に少なくとも 4 回、"Astrology" のタグが付いたページ/画面を訪問した購読者」

## メソッド

### UserProfile.trackActivity

キーワード/タグのメタデータとともに、訪問した URL または画面を追跡するには:

{% tabs %}
{% tab title="Dart" %}

```dart
await PushSDK.UserProfile.trackActivity('myapp://dashboard', ['my-tag']);
```

{% endtab %}
{% endtabs %}

また、提供するタグがない場合は、空の `tags` パラメータを省略します:

{% tabs %}
{% tab title="Dart" %}

```dart
await PushSDK.UserProfile.trackActivity('myapp://sports/article-1', []);
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.pushly.com/pushly-ja/integration/implementation-steps/flutter/sdk-flutter/akutibititorakkingu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
