About rate limits for GitHub Apps
GitHub sets a limit on the number of requests a GitHub App can send to the server within a specific time period. This limit helps to prevent abuse and denial-of-service attacks, and ensures that the system remains available for all users.
Determining rate limits for a GitHub App
참고: 현재 속도 제한 상태를 언제든지 확인할 수 있습니다. 자세한 내용은 "REST API의 리소스"을 참조하세요.
Rate limits depend on whether the GitHub App authenticates with a user access token or with an installation access token. A user access token allows an app to act on behalf of a specific user, after the user authorizes the app. An installation access token allows an app to attribute actions to the app itself. For more information about user and installation access tokens, "GitHub 앱 인증 정보."
Installation access tokens
GitHub Apps authenticating with an installation access token use the installation's minimum rate limit of 5,000 requests per hour. If an application is installed on an organization with more than 20 users, the application receives another 50 requests per hour for each user. Installations that have more than 20 repositories receive another 50 requests per hour for each repository. The maximum rate limit for an installation is 12,500 requests per hour.
User access tokens
User access token requests are limited to 15,000 requests per hour and per authenticated user.
Further reading
- "REST API의 리소스" in the REST API documentation
- "리소스 제한" in the GraphQL API documentation