We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当用户使用STS凭证访问BOS服务的时候,需要设置x-bce-security-token,当前的sdk只支持在header中设置x-bce-security-token,但这样PresignedUrl产生的url不方便直接分发。 从HTTP原生接口上来看,是支持将x-bce-security-token放入query中的,但当前版本的sdk使用STS凭证访问时,会强制在header中增加x-bce-security-token,这样Authorization会包含x-bce-security-token,导致请求的header中必须包含x-bce-security-token才能验证通过。
x-bce-security-token
PresignedUrl
Authorization
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
当用户使用STS凭证访问BOS服务的时候,需要设置
x-bce-security-token
,当前的sdk只支持在header中设置x-bce-security-token
,但这样PresignedUrl
产生的url不方便直接分发。从HTTP原生接口上来看,是支持将
x-bce-security-token
放入query中的,但当前版本的sdk使用STS凭证访问时,会强制在header中增加x-bce-security-token
,这样Authorization
会包含x-bce-security-token
,导致请求的header中必须包含x-bce-security-token
才能验证通过。The text was updated successfully, but these errors were encountered: