我没有看到对activities
端点使用最新v4 api的批量操作产生303响应。
来自The API Documentation:
使用值为true的X-BULK标头对操作进行请求。响应将始终为202接受。
轮询响应的“位置”标头中提供的URL。该URL用于“批量操作”端点。
操作完成后,轮询URL将返回303 See Other响应。
从303的Location标头中的URL下载响应,请参阅其他响应。
这是我在做什么:
我将初始请求发送到活动端点,且X-BULK
标头设置为'true'
。
我收到带有设置为轮询URL的202 Accepted
标头的Location
响应。
我开始从Location
标头轮询提供的url。
我收到一些带有以下数据和标头的200
响应:
数据:
{"data":{"id":26952539,"etag":"\\"434fa52f83b8e0bb72677f60b8297866\\""}}
标头:
{
'content-type': 'application/json; charset=utf-8',
'transfer-encoding': 'chunked',
connection: 'close',
vary: 'Accept-Encoding',
status: '200 OK',
'last-modified': 'Sat, 02 Dec 2017 22:17:13 GMT',
'x-ratelimit-limit': '50',
'x-ratelimit-reset': '1512253080',
'x-ratelimit-remaining': '45',
'x-request-id': '4674a764-c417-448c-af09-c6dae1cabe15',
etag: '"434fa52f83b8e0bb72677f60b8297866"',
'x-frame-options': 'SAMEORIGIN',
'cache-control': 'no-cache, private, no-store',
'x-xss-protection': '1; mode=block',
'x-api-version': '4.0.5',
'x-content-type-options': 'nosniff',
date: 'Sat, 02 Dec 2017 22:17:13 GMT',
'set-cookie':
[ 'XSRF-TOKEN=oQqTKV8XKRm9oiMuY1OFZ6qleZyRyvtcs9v52%2FWyeiVXxvVszHLiXsQkWelnUHs3ErSsH64ctIpehxErulAWHg%3D%3D; path=/; secure',
'_session_id=7babc5f94bc48ecd5d18d4b40c17d6ca; path=/; secure; HttpOnly' ],
server: 'nginx',
'strict-transport-security': 'max-age=31536000; includeSubdomains'
}
但是
303
永远不会出现。经过上述几个200
之后,我得到另一个带有有效负载的200
:数据:
{
"data": [
{
"data": [ {id: 1...}, {id: 2...}, {id: 3...}, ... ],
"status": 200
}
],
"status": "completed",
"requested": 46,
"performed": 46
}
标头:
{
'x-amz-id-2': '1uiNt20Vd/X74JxKZKrt/hah7aof8xfhZlt7fhlDt8b3G2nA47Y8ZDaohb2drSF8ErniirRK2Es=',
'x-amz-request-id': '2B29557952779E29',
date: 'Sat, 02 Dec 2017 22:17:15 GMT',
'last-modified': 'Sat, 02 Dec 2017 22:17:14 GMT',
'x-amz-expiration': 'expiry-date="Wed, 06 Dec 2017 00:00:00 GMT", rule-id="Expiration rule (auto-generated)"',
etag: '"58e33e4eced83d145bf6dec9f72b97be-1"',
'x-amz-server-side-encryption': 'AES256',
'content-encoding': 'utf-8',
'x-amz-version-id': '2Ou7F__59Pz8WKOKZwFg_fOuhQjD5ro0',
'content-disposition': 'attachment; filename="activities 20171202.json";',
'accept-ranges': 'bytes',
'content-type': 'application/json',
'content-length': '9593',
server: 'AmazonS3',
connection: 'close'
}
看来我可以通过测试
status === 'completed'
甚至检查content-disposition
标头的存在来充分解决此问题。我是在做错误的事情以禁止
303
响应,还是我忽略的activities
端点的语义?测试
status === 'completed'
来解决此问题是否足够?注意:我为每个请求传递了
Authorization
标头,其中包括访问令牌。谢谢!
最佳答案
这是Clio API-V4的已知错误。
目前最好的解决方案是:
测试200
的有效载荷的状态==='已完成'
我们正在努力解决303响应不足的问题。同时,我们将更新文档。
关于node.js - Clio API:批量操作未返回303状态代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47613427/