문제

Is there a way to pass UTM information trough Google Analytics, similar to websites, iOS or Android? I'm using the Google Analytics SDK from CodePlex in a Windows Phone app, and I want to pass information like utm_source, utm_medium and utm_campaign? So far all I've found is a way to set the "Campaign" property to the tracker. Is UTM available for windows phone?

    GoogleAnalytics.EasyTracker.GetTracker().Campaign = "myCampaign";
    GoogleAnalytics.EasyTracker.GetTracker().SendView("FirstPage");
도움이 되었습니까?

해결책

The only solution was to add them manually in GoogleAnalyticsSDK from CodePlex. Now, you have the possibility to send parameters like CampaignName, CampaignSource, CampaignMedium, CampaignID in any Windows Phone app.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top