Hi,
Our collective.github.com script has problems due to Github API rate limit of 5000 req/hour. The script does not complete succesfully under all conditoins any more due to high number or repos and users.
I have received the following response from Github when I asked if they could raise our API rate limit:
Hi, Mikko,
How many tokens are you using? If it's a handful or less, I can move API-created tokens http://developer.github.com/v3/oauth/#oauth-authorizations-api over to your OAuth app if you'd like.
Wynn Netherland
Developer, GitHub
@pengwynn
We discussed about this in IRC with @aclark4life and he mentioned that @davidjb should be included in the conversation.
I think the trick is that we simply allocate OAuth id for our script and then they can raise the rate limit.
We, of course, cannot put this id to public ode. What I have been doing before is that I'll put the ids / shared secrets in .bashrc and similar file on the server as environment variables and then have a script reading those vars.
https://gist.github.com/4062655
Hi,
Our collective.github.com script has problems due to Github API rate limit of 5000 req/hour. The script does not complete succesfully under all conditoins any more due to high number or repos and users.
I have received the following response from Github when I asked if they could raise our API rate limit:
Hi, Mikko,
How many tokens are you using? If it's a handful or less, I can move API-created tokens http://developer.github.com/v3/oauth/#oauth-authorizations-api over to your OAuth app if you'd like.
Wynn Netherland
Developer, GitHub
@pengwynn
We discussed about this in IRC with @aclark4life and he mentioned that @davidjb should be included in the conversation.
I think the trick is that we simply allocate OAuth id for our script and then they can raise the rate limit.
We, of course, cannot put this id to public ode. What I have been doing before is that I'll put the ids / shared secrets in .bashrc and similar file on the server as environment variables and then have a script reading those vars.
https://gist.github.com/4062655