Measurement protocol does not work for mobile application

I am trying to send screenview data to my Google Analytics account using a measurement protocol. But I do not see the data in real-time reports. query string:

http://www.google-analytics.com/collect?v=1&tid=UA-55175445-4&cid=666&t=screenview&an=HelloWorld 

where is the problem?

+6
source share
2 answers

I had the same problem, and apparently, if you use the mobile version of analytics, you need to send the application name (an) and application identifier (help), otherwise it will be ignored.

+5
source

Here are a few rounds that you might want to consider.

1) Make sure you are using universal Google. ( How? )

2) For new Google Analytics accounts, it will take up to 48 hours until you start using the measurement protocol.

3) Make sure that you install the User-Agent with the request

4) Make sure cid is a random UUID (version 4) as described at http://www.ietf.org/rfc/rfc4122.txt

+1
source

Source: https://habr.com/ru/post/976070/


All Articles