I'm looking for ways to overcome API quotas without resorting to requesting a raise, and would like to know what is classified as .. per user.
For example:
- Google People API has this quota:
Read Requests per 100 seconds per user - I setup an OAuth Client ID:
123-5ampl3.apps.googleusercontent.com - And for whatever reason, my queries are going to exceed "100 seconds per user".
My question/concerns:
- Can I create another client ID
123-an0th3r.apps.googleusercontent.comand have both call the same API so that I now essentially haverequests per 200 seconds per user? - Or is
per usernot tied to the client IDs, but instead, to the project id. - Could I create another project and re-route extra API calls to there?
- Or must I throttle my querying so it stays within the limit.
Thanks!