什么构成了 GitHub API 调用
What constitutes a GitHub API call
构成 github api 调用的本质。该文档指出它对每小时 api 调用的数量有限制。调用是否包含与服务器的任何通信,如 push
或 pull
,或任何 git 操作,如 commit
?
使用其 API v3 documentation would count against the API v3 rate limit. There is also a GraphQL API; using any of those endpoints would also count as an API call against the API v4 rate limit 中列出的任何 REST API 端点。
看起来这两个 API 的速率限制是无关的:你可以想象在同一时间跨度内使用两个 API 到它们各自的限制。
常规 git
命令有 their own protocols。它们不计入您的 API 速率限制,因为它们不使用 API.
构成 github api 调用的本质。该文档指出它对每小时 api 调用的数量有限制。调用是否包含与服务器的任何通信,如 push
或 pull
,或任何 git 操作,如 commit
?
使用其 API v3 documentation would count against the API v3 rate limit. There is also a GraphQL API; using any of those endpoints would also count as an API call against the API v4 rate limit 中列出的任何 REST API 端点。
看起来这两个 API 的速率限制是无关的:你可以想象在同一时间跨度内使用两个 API 到它们各自的限制。
常规 git
命令有 their own protocols。它们不计入您的 API 速率限制,因为它们不使用 API.