Google Analytics without JavaScript or cookies

I have a unique situation when I have a website with several thousand users who all fight with a client that does not support JavaScript or cookies.

It also cannot load normal image files, but instead loads only a special type of image, NTFT

<img src="http://example.com/image.ntft" height="1" width="1" />

The client is not a web browser as such, but renders a custom HTML form.

I want to use Google Analytics to get visitor information for my site and to get unique visitor information. I get several hundred thousand hits and about ~ 40 GB of traffic per day, so I'm very interested in information for unique visitors. I watched https://github.com/thomasbachem/php-ga but don't want anything like this: How can I get PHP-GA to stop the increase in visitors in real time in Google Analytics? to happen, since I will get "Unique Visitors", which are actually only one visit to the page.

I am using PHP. Can you offer a decent solution for measuring traffic from unique visitors (for example, unique IP addresses)?

+3
source share
2 answers

I would ask PIWIK to try. You can assign a unique identifier to your users and track them through the tracking API.

http://piwik.org/

DOCS Tracking API: http://piwik.org/docs/tracking-api/

PHP client for tracking API http://developer.piwik.org/api-reference/PHP-Piwik-Tracker

+2
source

Google Measurement Protocol. , cid. , ip- . , ip ( , ), .

GA, , GA, javascript.

PHP: https://github.com/krizon/php-ga-measurement-protocol API Doc: https://developers.google.com/analytics/devguides/collection/protocol/v1/devguide

: php-.

+1

All Articles