Travis CI API 文档

分页

参见 https://developer.travis-ci.cn/format (@pagination 下) 以了解 API 有效负载的描述。

单个响应返回的集合可能代表更大集合的子集。
要检索更大集合的另一个子集,客户端可以使用 @pagination 字段中公开的元数据。

分支、构建、cron 作业、组织、仓库和请求使用分页。
默认情况下,分页设置为 **100**。您可以通过在请求中添加 limit=xxx 来更改它。

{
  "@type":           "branches",
  "@href":           "/repo/891/branches?exists_on_github=true&limit=5",
  "@representation": "standard",
  "@pagination":     {
    "limit":         5,
    "offset":        0,
    "count":         24,
    "is_first":      true,
    "is_last":       false,
    "next":          {
      "@href":       "/repo/891/branches?exists_on_github=true&limit=5&offset=5",
      "offset":      5,
      "limit":       5
    },
    "prev":          null,
    "first":         {
      "@href":       "/repo/891/branches?exists_on_github=true&limit=5",
      "offset":      0,
      "limit":       5
    },
    "last":          {
      "@href":       "/repo/891/branches?exists_on_github=true&limit=5&offset=20",
      "offset":      20,
      "limit":       5
    }
  }
}