google-analytics

Android: Google Analytics availability in Google Play Services?

好久不见. 提交于 2019-12-03 16:17:10
问题 Google Analytics has been announced to become part of the rolling out Google Play Services 4.3, however it is not yet included in the Google Play Services packages list: http://developer.android.com/reference/gms-packages.html Any idea when it will become available, and will it be safe to be used straight away, or will it be better to wait for some time to make sure every user has Google Play Services 4.3 already installed? 回答1: I've noticed some other differences. Tracker To get a new

Google Analytics event tracking - max string length

↘锁芯ラ 提交于 2019-12-03 16:14:37
问题 I am using Google Analytics for tracking events in my Android App. My question is: is there a limit for the string length in an event? I have found nothing about this topic on Googles devguide site. Best regards! Edit: I tried it whith a string with 2000 characters - and it works. If you need more (I don't believe), than try it first. 回答1: According to the official documentation, Max Length for Event Category = 150 Bytes Max Length for Event Action = 500 Bytes Max Length for Event Label = 500

What happens with iphone google analytics calls when there's no internet connection?

丶灬走出姿态 提交于 2019-12-03 16:07:05
问题 Hey Fellow Developers! I'm doing a little research about Analytics products for iphone apps. I came across google analytics which seems pretty good. Somehow I'm not finding lot's of documentation about it. Basically my concern is: What happens to a trackPageview or event tracking call when there's no Internet connection? Are these method calls persisted for future dispatch when there's a connection available or do they generate an error and that's it? Thank you in advance for your help! 回答1:

Google Analytics reports a high amount of Internet Explorer 7 traffic

回眸只為那壹抹淺笑 提交于 2019-12-03 15:30:19
问题 For our website, Google Analytics reports an excessively high number of Internet Explorer 7 users (40%). As we drilled further into the data, we found that the majority of these IE7 hits were coming from newer operating systems like Windows 7, where IE7 was never a default installed browser. It does not seem plausible that we actually have this many (or any) users visiting our site with IE7 within Windows 7. Why are our Internet Explorer 7 numbers so inflated as reported by Google Analytics?

Firebase Analytics & GTM Tracking

喜欢而已 提交于 2019-12-03 15:12:15
This question is about why one would need GTM for Google Analytics Firebase. There is a similar post on this question, but it has to do with the HOW . I am looking for the reason WHY one would want to implement GTM alongside the already powerful Google Analytics for Firebase. In May 2017, "Firebase Analytics" was renamed to "Google Analytics for Firebase". This should not be confused with "Google Analytics" for mobile apps (legacy). Historically, GTM was used for websites and web-apps, where one can paste the GTM snippet and "listen" for a class/id and then, for example through a tag, bind an

Analytics.js: What does 'auto' argument do on tracking object creation?

与世无争的帅哥 提交于 2019-12-03 15:11:27
问题 I've just switched to the new Google Analytics Universal Analytics platform, using the new javascript API - Analytics.js In the first example code snippet from the docs a tracking object is created, then a pageview of the current page is logged using that tracking object. ga('create', 'UA-XXXX-Y', 'auto'); ga('send', 'pageview'); Notice the 'auto' argument - I can't work out what that's there for . I had a look at the method reference and it seems that the relevant parameter is optional and

Google analytics custom screen names in Easy Tracker

为君一笑 提交于 2019-12-03 14:59:04
I have an application with a reused activity (its used for different purposes so just tracking the activity name would not help me, thats why I want to define the screen name manually while still using the EasyTracker. My code looks like this: EasyTracker t = EasyTracker.getInstance(this); t.set(Fields.SCREEN_NAME, screenName); // MapBuilder map = MapBuilder.createAppView(); // map.set(Fields.SCREEN_NAME, screenName); // t.send(map.build()); t.activityStart(this); I got these information from https://developers.google.com/analytics/devguides/collection/android/v3/screens I dont want to do this

SecurityException: Parcel.readException coming from google analytics code

不打扰是莪最后的温柔 提交于 2019-12-03 14:43:24
问题 Our app is getting quite a few different SecurityException reports from our crash report software. Here is a stacktrace of the crash: java.lang.SecurityException: Unable to find app for caller android.app.ApplicationThreadProxy@43fda840 (pid=17925) when registering receiver android.content.IIntentReceiver$Stub$Proxy@43fd9458 at android.os.Parcel.readException(Parcel.java:1431) at android.os.Parcel.readException(Parcel.java:1385) at android.app.ActivityManagerProxy.registerReceiver

Google Analytics Core Reporting API Version 3.0 without client login

十年热恋 提交于 2019-12-03 14:37:37
I want to access our Google Analytics account reporting using the newer v3.0, but it seems from everything that I read that in order to get a valid access token the user must log in. We want direct access to our own account reporting, and not access a client's depending on their account. How do we accomplish this in PHP without having to send the browser to a Google login page? Is there no straight API authentication for v3.0? EDIT This seems to be the only method of accessing the API without end-user interaction, which they call "Server to Server": https://developers.google.com/accounts/docs

How does Google Analytics Real Time work?

佐手、 提交于 2019-12-03 14:29:26
I'm wondering how Google Analytics Real Time user interface works, what's the technique ? Do they use long-polling from the client to keep the UI statistics instantly up to date by delivering realtime information from the server to the client? I just open Chrome dev tool on network tab and there is a infinite request on https://www.google.com/analytics/realtime/bind Does anybody know the trick? It works flawless... The below refers to how the real time data is collected, not how the UI updates. (It looks like the UI is just using AJAX polling on the client-side, though) No special polling or