You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在 #12 中设置每日凌晨 5 点更新 repo statistic 数据后,在服务器中的日志中发现 API 速率超过限制,查看 GitHub API 文档后发现,普通的授权 token 每小时只能发起 5000 次请求。因此在每小时的请求次数耗尽后,该小时内无法再进行请求。
situation:
{
"message": "API rate limit exceeded for 219.78.228.97. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)",
"documentation_url": "https://docs.github.com/rest/overview/resources-in-the-rest-api#rate-limiting"
}
reason:
User-to-server requests are limited to 5,000 requests per hour and per authenticated user. All requests from OAuth applications authorized by a user or a personal access token owned by the user, and requests authenticated with any of the user's authentication credentials, share the same quota of 5,000 requests per hour for that user.
The text was updated successfully, but these errors were encountered:
在 #12 中设置每日凌晨 5 点更新 repo statistic 数据后,在服务器中的日志中发现 API 速率超过限制,查看 GitHub API 文档后发现,普通的授权 token 每小时只能发起 5000 次请求。因此在每小时的请求次数耗尽后,该小时内无法再进行请求。
situation:
reason:
The text was updated successfully, but these errors were encountered: