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