通过AtTask RESTful API获取和分页所有数据
本文关键字:分页 数据 获取 AtTask RESTful API 通过 | 更新日期: 2023-09-27 18:30:07
我正在尝试向AtTask RESTful API发出Get请求,以获取1000个项目对象。ATask API文档提供了一些关于如何做到这一点的提示。我需要对我将要请求的对象的数量进行分页。想象一下,我需要获取过去7天内可用的任何对象,我如何更改下面的代码来实现这一点,因为我不知道对象的确切数量,所以我不知道分页的值应该是多少,我也不确定是否可以递归地发送Get请求,直到获取所有数据。
public JToken Search( ObjCode objcode, object parameters, int limit = 100 )
{
VerifySignedIn();
string[] p = parameterObjectToStringArray(parameters, "sessionID=" + SessionID);
JToken json = null;
if (limit > 100)
{
json = client.DoGet(string.Format("/{0}/search?$$LIMIT={1}", objcode,limit),limit,p);
}
else
{
json = client.DoGet(string.Format("/{0}/search", objcode),limit,p);
}
return json;
}
public JToken DoGet(string path,int limit = 100 ,params string[] parameters)
{
return DoRequest(path,limit ,parameters);
}
public JToken DoRequest(string path,int limit, params string[] parameters)
{
if (!path.StartsWith("/"))
{
path = "/" + path;
}
string fullUrl = url + path + ToQueryString(parameters,limit);
if (DebugUrls) Console.WriteLine("Requesting: {0}", fullUrl);
WebRequest request = HttpWebRequest.CreateDefault(new Uri(fullUrl));
using (WebResponse response = request.GetResponse())
{
using (Stream responseStream = response.GetResponseStream())
{
return ReadResponse(responseStream);
}
}
}
private string ToQueryString(string[] parameters, int limit = 100)
{
StringBuilder sb = new StringBuilder();
parameters.ToList().ForEach(s => sb.Append(s).Append("&"));
if (sb.Length > 0)
{
sb.Remove(sb.Length - 1, 1);
}
return limit > 100 ? "&" + sb : "?" + sb;
}
您需要首先调用COUNT来获取要处理的对象数。这与/search的方法相同,但使用/count而不是search。
示例
GET /attask/api/v4.0/proj/count?status=cur
然后,您可以使用$$FIRST浏览并提取结果。
你的代码看起来像这个
public JToken Search( ObjCode objcode, object parameters, int limit = 100 )
{
VerifySignedIn();
string[] p = parameterObjectToStringArray(parameters, "sessionID=" + SessionID);
JToken json = null;
JToken count = null;
count = client.DoGet(string.Format("/{0}/count", objcode),limit,p);
for(int i=0; i<count; i+limit){
if (limit > 100)
{
json = client.DoGet(string.Format("/{0}/search?$$LIMIT={1}&$$FIRST={2}", objcode,limit,i),limit,p);
}
else
{
json = client.DoGet(string.Format("/{0}/search&$$FIRST={1}", objcode,i),limit,p);
}
return json;
}
}
可以找到这些信息https://developers.workfront.com/api-docs/#PaginatedResponses