John Smith
John Smith

Reputation: 11

How to fix 'daily request limit' in google analytic php API?

I am using google analytic php Api for save post views data in db and display data on page.But after few mins my age showing below error

Fatal error: Uncaught Google_Service_Exception:
{ "error": { "code": 429, "message": "Quota Error: profileId 87377568 has exceeded the daily request limit.", 
"errors": [ { 
"message": "Quota Error: profileId 87377568 has exceeded the daily request limit.", 
 "domain": "global", 
"reason": "rateLimitExceeded" } ],
  "status": "RESOURCE_EXHAUSTED" } }

And when i checked my today hits on google its showing 9456/50000. Then why i am getting this error.

Please help me to fix this.

Upvotes: 1

Views: 1117

Answers (1)

etemple1
etemple1

Reputation: 1788

It appears that you are hitting the per profile quota limit of 10,000 requests/day.

Unfortunately, there is not a way around this limit.

Note: The 10,000 requests per view (profile) per day or the 10 concurrent requests per view (profile) cannot be increased.

Upvotes: 1

Related Questions