Subj.
Does it mean that in a free account I have limited number of api requests?
Example of the part of response:
{
"@type": "pending",
"remaining_requests": 9,
"repository": {
"@type": "repository",
When I sent my first response, the value was 10. After second response - it became 9...
I think it's an hourly limit. The API code is here.
It says:
TIME_FRAME = 1.hour
LIMIT = 10
...
def remaining_requests(repository)
api_builds_rate_limit = limit(repository)
return api_builds_rate_limit if access_control.full_access?
count = query(:requests).count(repository, TIME_FRAME)
count > api_builds_rate_limit ? 0 : api_builds_rate_limit - count
end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With