- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在AtTask API调用中,当我需要返回超过2000条记录时,如何使用分页?
例如,考虑到开发者网站 https://developers.attask.com/api-docs/#Basics 的以下内容我看到以下内容
Paginated Responses
To override the default number of results and set the response to provide 200 results you would include the following in your query:
GET /attask/api/project/search?$$LIMIT=200
To ensure reliability and performance for other tenants in the system, the maximum allowed limit per query is 2000 objects. Attempting to specify a larger limit will result in an error.
Therefore, it is recommended you consider using paginated responses for large datasets. To specify the first result that should be returned, the
$$FIRST
filter can be added. The following will return results 201-250 for a query.
GET /attask/api/project/search?$$FIRST=201&$$LIMIT=50
我不明白的是如何弄清楚我一开始有多少个。如果我想下载系统中的小时数,我如何知道我需要调用多少次(是否有 count(*)
)或类似的方法?我是否只是简单地获取前 2k,处理,尝试获取下一个 2k,如果不为空则处理?冲洗并重复?
最佳答案
由于初始搜索只会提取 2000 个结果,因此您必须迭代并提取下一个 2000 个结果,直到没有结果为止。
关于java - AtTask API 中超过 2000 条记录的分页示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27612316/
我已经了解了 AtTask api、登录、获取 session ID 等基础知识,但还没有弄清楚如何记录任务或项目的时间。 嗅探我看到的实际网站,我们使用我的任务的 ID 和 点击了 https://
我有一个名为“标签”的自定义字段。当我收到任务时,AtTask 的响应方式如下: GET /attask/api/v3.0/task/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?
当我在公司(和其他对象)上使用 /search 或 &method=get 时,我仅获得字段的子集作为返回。如何获取所有字段? 即 https://example.com/attask/api/com
我正在从事一个持续的 API 项目。当前手头的问题是能够从 AtTask 服务器下载我的数据,这些数据恰好位于 AtTask 服务器上的文件夹结构中。我已经很好地创建了文件夹; Document、Do
当我使用 {domain}/attask/api/login?username={name}&password={pass}它返回一个 sessionID。在需要再次登录之前,我可以使用该 sessi
在AtTask API调用中,当我需要返回超过2000条记录时,如何使用分页? 例如,考虑到开发者网站 https://developers.attask.com/api-docs/#Basics 的
我使用第三方 IDP (ADFS) 将 Attask 与 SAML 集成在一起。我的 Web 应用程序也支持 SAML 并配置了相同的 IDP。我能够在两个应用程序(Attask 和我的应用程序)中使
我是一名优秀的程序员,十分优秀!