Reputation: 143
When I send the request from fiddler or from .net code - I see the counter in Analytics active users But when it is sent from a cloud machine - I get 200 OK but the counter does not change
Possible problems:
Request format: https://www.google-analytics.com/collect?t=pageview&v=1&dp={myDp}&tid={myTid}&cid={myCid}
The request was built based on this: https://developers.google.com/analytics/devguides/collection/protocol/v1/reference
Any more ideas?
Dekel
Upvotes: 1
Views: 68
Reputation: 14197
This can happen if you are looking at a view where Bot Filtering
is enabled:
It happens because your call has few parameters (for example it doesn't have the parameter of screen resolution, host name, etc...) therefore it is interpreted as a bot.
Try to see the data in a View where there is no filter (or disable this option) or to enrich the call with more parameters.
Upvotes: 1