google-analytics

Google analytics error message 'Unexpected error. please try again later'

爷,独闯天下 提交于 2020-02-06 06:42:45
问题 When trying to save a filter to a GA dashboard widget I am getting the error message 'Unexpected error. please try again later'. The widget I am having a problem with is the 'show landing pages for Facebook referrals' widget. Here are the parameters I set... Display the following columns: Page title Unique pageviews Filter this data: Only show 'Social source referral' Exactly matching Yes Only show 'Social network' Exactly matching Facebook Up to this point I can save the widget. Now...its

Google analytics error message 'Unexpected error. please try again later'

你说的曾经没有我的故事 提交于 2020-02-06 06:42:38
问题 When trying to save a filter to a GA dashboard widget I am getting the error message 'Unexpected error. please try again later'. The widget I am having a problem with is the 'show landing pages for Facebook referrals' widget. Here are the parameters I set... Display the following columns: Page title Unique pageviews Filter this data: Only show 'Social source referral' Exactly matching Yes Only show 'Social network' Exactly matching Facebook Up to this point I can save the widget. Now...its

What is the correct content security policy for Google Analytics?

谁说胖子不能爱 提交于 2020-02-05 05:03:29
问题 I'm trying to set up Google Analytics on my website. Although I'm having problems with the content security policy. I get the following console error when I load my page: Refused to load the script 'https://www.google-analytics.com/analytics.js' because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-inline' www.google-analytics.com ajax.googleapis.com". What is the correct way to load the 'https://www.google-analytics.com/analytics.js' script onto my

Query Failed Error: Views cannot be queried through prefix. Partial list of the matched views are

痴心易碎 提交于 2020-02-04 05:47:06
问题 I am trying to query a dataset with multiple tables and equivalent views. I am trying to query just the tables using _table_suffix, but it returns an error "Query Failed Error: Views cannot be queried through prefix. Partial list of the matched views-......" I cannot remove the views from the dataset. Is there a way to query the tables only and ignore the views? SELECT COUNT(*), _table_suffix, DATE(created) FROM `dataset.viewed_*` WHERE _table_suffix like '%_page' 回答1: Your options are:

How to implement and test Firebase Analytics in a React-Native project?

妖精的绣舞 提交于 2020-02-03 06:13:43
问题 I have learned from reading that Firebase officially supports react-native. https://firebase.googleblog.com/2016/01/the-beginners-guide-to-react-native-and_84.html I have followed the above link and performed these steps: npm install firebase --save Opened index.ios.js and imported firebase import * as firebase from 'firebase'; Initialise Firebase const firebaseConfig = { apiKey: "<your-api-key>", authDomain: "<your-auth-domain>", databaseURL: "<your-database-url>", storageBucket: "<your

How to implement and test Firebase Analytics in a React-Native project?

空扰寡人 提交于 2020-02-03 06:13:21
问题 I have learned from reading that Firebase officially supports react-native. https://firebase.googleblog.com/2016/01/the-beginners-guide-to-react-native-and_84.html I have followed the above link and performed these steps: npm install firebase --save Opened index.ios.js and imported firebase import * as firebase from 'firebase'; Initialise Firebase const firebaseConfig = { apiKey: "<your-api-key>", authDomain: "<your-auth-domain>", databaseURL: "<your-database-url>", storageBucket: "<your

How to implement and test Firebase Analytics in a React-Native project?

可紊 提交于 2020-02-03 06:10:57
问题 I have learned from reading that Firebase officially supports react-native. https://firebase.googleblog.com/2016/01/the-beginners-guide-to-react-native-and_84.html I have followed the above link and performed these steps: npm install firebase --save Opened index.ios.js and imported firebase import * as firebase from 'firebase'; Initialise Firebase const firebaseConfig = { apiKey: "<your-api-key>", authDomain: "<your-auth-domain>", databaseURL: "<your-database-url>", storageBucket: "<your

Google Analytics UserID API extraction

一世执手 提交于 2020-02-02 19:33:49
问题 Trying to extract a userID from GoogleAnalytics. This is to view which user is the using the website most and least . I would to retrieve the top 5 user IDs and bottom 5 user IDs that were passed using either: gtag('config', 'GA_TRACKING_ID', { 'user_id': 'USER_ID' }); OR using a custom dimension... ( https://support.google.com/analytics/answer/2709828?hl=en ) I'm (vaguely) aware of policies and TOS to keep 'non identifying' information on Google BUT there are posts online indicating you can

Transpose nested rows into columns in bigquery with google analytics data

自作多情 提交于 2020-02-01 06:23:20
问题 I am interested in pulling visitors with custom dimension attributes, where each row is a unique fullvisitorid and columns are desired customdimension.values. Using the london helmets as an example, here I am pulling visitors with the two custom dimensions I am interested in: SELECT fullvisitorid, customDimensions.index, customDimensions.value FROM [google.com:analytics-bigquery:LondonCycleHelmet.ga_sessions_20130910] where customDimensions.index in (2,3) group by fullvisitorid,

Google Analytics Access with C#

帅比萌擦擦* 提交于 2020-01-29 04:28:26
问题 I know that there is no official API for Google Analytics but is there a way to access Google Analytics Reports with C#? 回答1: Update : Google launched a Google Analytics API today. Google Analytics Blog - API Launched 回答2: I wrote a small project that lets you generate pretty much any Analytics report. It's listed on Google's Analytics API page - http://code.google.com/apis/analytics/docs/gdata/gdataArticlesCode.html You can read about it here and get the source code - http://www.reimers.dk