Getting user info using Client ID

2020-04-23 04:26发布

I have inserted the analytics.js tracking script into my code, and now I am trying to get user data such as medium, source, etc. using javascript and putting them into variables. Is there a way I can do this using Client Id?

1条回答
Luminary・发光体
2楼-- · 2020-04-23 04:41

I assume you mean getting the data in realtime for use in your website. That is not possible.

Client ID is not exposed in the interface by default, you'd need to use a custom dimension.

There is a processing delay, report data may only be reliable the next day.

While there is the (less reliable) data from the real time API (which at least contains medium and source information) it does not support custom dimension, so you could not use the client id as query key.

Also to retrieve data from the API you need to be authenticated, which the current users of your webpage is not. So you would need to set up some kind of serverside proxy that handles authentication for you.

Also there are API limits determining how many requests you can make in a given time frame. Even a small site would exhaust those requests pretty quickly.

So while in theory this sounds doable it is not actually feasible for any real-life purpose.

查看更多
登录 后发表回答