jclouds s3 API 是否支持“307 临时重定向”以响应 header Expect: 100-continue 的 PUT?

Does the jclouds s3 API support "307 temporary redirect" in response to a PUT with header Expect: 100-continue?

我们的测试结果表明不支持重定向,尽管其他客户端,例如卷曲 & s3cmd 做。 https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTRedirect.html#RESTRedirect100Continue 应支持重定向。确认支持或不支持 jclouds 源的指针将很有价值。

S3RedirectionRetryHandler 处理 301 和 307。

jclouds支持307重定向。所有 3xx 响应 默认情况下,代码被拦截 here,然后被处理(除非 提供商定义了自己的重定向重试处理程序)here.