本文介绍了GitHub API获取用户/组织总数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用 GitHub API ,我如何计算截止到那时的用户/组织总数请求?

Using GitHub API, how can I count the total number of users/organizations at the time of the request?

用户组织 API响应不包含last 链接标题.

Users and Organizations API responses do not contain last Link header.

注意:由于费率限制.

推荐答案

GraphQL API v4

您可以获取用户数&使用 GraphQL API v4

{
  user: search(type: USER, query: "type:user") {
    userCount
  }
  org: search(type: USER, query: "type:org") {
    userCount
  }
}

在资源管理器中尝试

给出:

{
  "data": {
    "user": {
      "userCount": 24486303
    },
    "org": {
      "userCount": 1629433
    }
  }
}

REST API v3

08-15 18:32