Hi!
When using a Github button with a counter on a regularly visited page such as an admin panel, the user will potentially exceed it's Github API rate limit causing the button to stop working after some time. On pages with many buttons the rate limit can be used up quickly.
/**/_({
"meta": {
"Content-Type": "application/javascript; charset=utf-8",
"X-RateLimit-Limit": "60",
"X-RateLimit-Remaining": "0",
"X-RateLimit-Reset": "1511616179",
"X-GitHub-Media-Type": "github.v3; format=json",
"status": 403
},
"data": {
"message": "API rate limit exceeded for 123.456.789.123. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)",
"documentation_url": "https://developer.github.com/v3/#rate-limiting"
}
})
Github advises to use condition requests as a solution to prevent exceeding the API rate limit (and to save tons of useless traffic on Github's servers).
Most responses return an ETag header. Many responses also return a Last-Modified header. You can use the values of these headers to make subsequent requests to those resources using the If-None-Match and If-Modified-Since headers, respectively. If the resource has not changed, the server will return a 304 Not Modified.
https://developer.github.com/v3/#conditional-requests
It would be nice if the counter could be improved to make use of condition requests to save a lot of all API traffic from github-buttons.
Hi!
When using a Github button with a counter on a regularly visited page such as an admin panel, the user will potentially exceed it's Github API rate limit causing the button to stop working after some time. On pages with many buttons the rate limit can be used up quickly.
Github advises to use condition requests as a solution to prevent exceeding the API rate limit (and to save tons of useless traffic on Github's servers).
https://developer.github.com/v3/#conditional-requests
It would be nice if the counter could be improved to make use of condition requests to save a lot of all API traffic from github-buttons.