-
What is the reason behind the token usage limit of 1 in Google Analytics Data API?
Hey folks, have you also noticed something odd with the token consumption? It looks like it’s stuck at 1 since the start of this week. 🤔 Kinda strange considering it used to hover somewhere closer to 10. Got me wondering if there might be some behind-the-scenes changes or plans stirring.
Just to give a bit more context, here’s some of the requests and responses I’ve been playing around with:
A typical request I’ve been sending:
{ "dateRanges": [ { "endDate": "2023-03-30", "startDate": "2021-10-01" } ], "dimensions": [ { "name": "date" }, { "name": "pagePath" } ], "metrics": [ { "name": "sessions" }, { "name": "screenPageViews" } ], "returnPropertyQuota": true }
And the row count I’m getting back:
1114
And here’s the latest on the quota front:
{ "concurrentRequests": { "remaining": 10 }, "potentiallyThresholdedRequestsPerHour": { "remaining": 120 }, "serverErrorsPerProjectPerHour": { "remaining": 10 }, "tokensPerDay": { "consumed": 1, "remaining": 24975 }, "tokensPerHour": { "consumed": 1, "remaining": 4990 }, "tokensPerProjectPerHour": { "consumed": 1, "remaining": 1740 } }
Is anyone else finding the same thing? I’d love to hear your thoughts.
Log in to reply.