2015-11-04 33 views
0

我要跟蹤推介來源爲用戶如何結束了在特定頁面上Mixpanel查詢活動與性能

$mixpanel.track('Page View', 
    'doctor_profile_id': doctor_uuid, 
    'patient_profile_id': currentUser.uuid, 
    'referral_source': 'News Feed', // this could be ['Search', 'Recommendations'] etc 
}); 

我希望能夠查詢Mixpanel API並獲得指定的Page View計數參數(如doctor_profile_id),並接收包含頁面瀏覽次數的響應,並計算各種引用來源。

我正在查看event端點,但看起來您只能返回「網頁查看」。您可以通過導出CSV來完成此任務,但這非常不理想。

這是解決這個問題的正確方法還是我錯誤地使用了mixpanel?

回答