adjust-icon

Mixpanel SDKとの連携

連携を開始する前に、あなたのデータの一部を使用するための条件をお読みください。

Adjust SDKとMixpanel SDKを連携するには、以下の手順に従ってください。

事前準備

この機能を利用するには、まずAdjust iOS SDKをダウンロードして設定してください。

ガイド

Mixpanel APIを活用して「super properties」を登録することができます。このプロパティは、全てのアクティビティと送信できます。詳細については、Mixpanelのドキュメントをご覧ください。

Adjust SDKをMixpanel SDKと連携するには、「super properties」を登録する必要があります。

Adjustサーバーからレスポンスを受け取った後に情報を送信してください。これを行うには、Android向けアトリビューションコールバックガイドの手順に従ってください:

Mixpanel APIを使用するには、コールバックメソッドを以下のように変更します:

- (void)adjustAttributionChanged:(ADJAttribution *)attribution {
Mixpanel *mixpanel = [Mixpanel sharedInstance];
// The adjust properties will be sent
// with all future track calls.
if (attribution.network != nil)
[mixpanel registerSuperProperties:@{@"[Adjust]Network": attribution.network}];
if (attribution.campaign != nil)
[mixpanel registerSuperProperties:@{@"[Adjust]Campaign": attribution.campaign}];
if (attribution.adgroup != nil)
[mixpanel registerSuperProperties:@{@"[Adjust]Adgroup": attribution.adgroup}];
if (attribution.creative != nil)
[mixpanel registerSuperProperties:@{@"[Adjust]Creative": attribution.creative}];
}