google-analytics

Google Tag Manager Rule to Identify Traffic Source

三世轮回 提交于 2019-12-23 04:32:26
问题 Is there a way to create a google tag manager rule ( via a macro ) which identifies the traffic source type? ( Like organic ?). Would like to create a tag which only fires if the source of traffic is organic. Possible? 回答1: Easiest way would be to extract the source (utmcsr) from the Google Analytics (__utmz) Cookie and fire an tag Manager event based on the value. Then create a rule based on that event. I don't think it's possible solely from the tag manager interface. (Updated to add) I've

Google analytics not working iOS

老子叫甜甜 提交于 2019-12-23 04:29:52
问题 I have implemented 3 steps. Step 1: I have Downloaded google analytics Library files and added this files to project, GAI.h GAITrackedViewController.h GAITracker.h GAITransaction.h GAITransactionItem.h libGoogleAnalytics.a CoreData.framework SystemConfiguration.framework Step 2: Added this code in didFinishLaunchingWithOptions - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [UIApplication sharedApplication].statusBarHidden = NO;

Google analytics not working iOS

天大地大妈咪最大 提交于 2019-12-23 04:29:04
问题 I have implemented 3 steps. Step 1: I have Downloaded google analytics Library files and added this files to project, GAI.h GAITrackedViewController.h GAITracker.h GAITransaction.h GAITransactionItem.h libGoogleAnalytics.a CoreData.framework SystemConfiguration.framework Step 2: Added this code in didFinishLaunchingWithOptions - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [UIApplication sharedApplication].statusBarHidden = NO;

Google Analytic Embed API chart: Responsive

ぃ、小莉子 提交于 2019-12-23 04:16:14
问题 How would I make this Google Analytic Embed API chart responsive? I noticed that the demo on this page is reponsive: https://ga-dev-tools.appspot.com/embed-api/basic-dashboard/ I have also seen various ways of doing this with Google Charts here https://code.google.com/p/google-visualization-api-issues/issues/detail?id=1056 <!doctype html> <html lang="en"> <head> <title>Google Charts</title> <script> (function(w,d,s,g,js,fs){ g=w.gapi||(w.gapi={});g.analytics={q:[],ready:function(f){this.q

GA query to return unique count number

ぐ巨炮叔叔 提交于 2019-12-23 03:27:08
问题 In Google Analytics I have set up set a custom dimension that contains a string of tags ( ga:dimension1 ). Data Example: "tag1,tag2,tag3" . I also use events. I use Query Explorer to test some custom reports. For tag2 it is working like this: metrics: ga:totalEvents dimensions: ga:dimension1 sort: ga:totalEvents filters: ga:dimension1=~(tag2) I receive results like this: Custom Dimension 1 | Total Events tag2 | 2 tag1,tag2 | 1 tag3,tag1,tag2 | 4 Is there a solution to count these results in a

Google Analytics Management API error: User does not have sufficient permissions for this filter

ぐ巨炮叔叔 提交于 2019-12-23 03:26:21
问题 Sometimes when I try to link a filter to a profile view I get this error User does not have sufficient permissions for this filter. with status=403, code=OK, reason=insufficientPermissions . I am using this scope https://www.googleapis.com/auth/analytics.edit and this error does not occur all the time but more or less randomly. First I create a filter, and then I add it to an account, then I link the filter to a view from the same account. Is it possible that the added filter is not processed

Google Analytics Experiments always chooses original variation?

十年热恋 提交于 2019-12-23 03:09:47
问题 I'm setting up a multivariate test through Google Analytics. I created the experiment through the API, and everything is looking like its running, however, only the original is being selected and the variants aren't being served. I've tried using incognito windows, and had a few other people visit the page as well, but everyone receives a page with ?utm_expid=XXXXXXXX-XX.YYYYYYYYYYYYYYYYYY.0 on the end, where the .0 seems to indicate "show original." Any ideas why an experiment might always

Google play policy update - privacy vs Google Analytics, Firebase Analytics

纵饮孤独 提交于 2019-12-23 03:06:16
问题 Recently Google updated theirs policy for developers. https://play.google.com/about/privacy-security/personal-sensitive/ If your app handles personal or sensitive user data (including personally identifiable information, financial and payment information, authentication information, phonebook or contact data, microphone and camera sensor data, and sensitive device data) then your app must: .. If your app collects and transmits personal or sensitive user data unrelated to functionality

Data Import via Management API

自古美人都是妖i 提交于 2019-12-23 02:55:17
问题 I'm experiencing an issue with getting the Google Analytics Managment API to work with Data Import. When I send the data to the API via Google's PHP library, the uploaded file is visible in the "Manage Uploads" section, and appears to be correctly formatted CSV data, although the name of the file is just a random string without ".csv" at the end. See code same of this method below: $client = new \Google_Client(); $client->setAuthConfig($config); $client->setScopes(['https://www.googleapis.com

How to use Google analytics to track open rates, click rates in a email?

最后都变了- 提交于 2019-12-23 02:23:05
问题 I have read the document and there is a track code should be able to help me. However, how can i actually use it to get the open rates, url click rates ? For the open rates : I am using swiftmailer to send the mail, is it a way to add the track code (How? Since mail is plain html , no javascript or php is allowed) What i should do in the html/text mail template? For the url click rates : Is it separate from the mailing? that means i just have to add the link in the page i append in the mail.