-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Unsigned request option #1149
Comments
This is something I've been considering adding to the SDK recently. I'm still considering what the mechanism would be to allow for unauthenticated requests. |
…dentials are provided, http fallback otherwise. Ref: aws/aws-sdk-ruby#1149
Added to feature request backlog. |
@awood45 is this still in the request backlog ? |
Reopening - deprecating usage of Feature Requests backlog markdown file. |
Greetings! We’re closing this issue because it has been open a long time and hasn’t been updated in a while and may not be getting the attention it deserves. We encourage you to check if this is still an issue in the latest release and if you find that this is still a problem, please feel free to comment or open a new issue. |
Greetings! We’re closing this issue because it has been open a long time and hasn’t been updated in a while and may not be getting the attention it deserves. We encourage you to check if this is still an issue in the latest release and if you find that this is still a problem, please feel free to comment or open a new issue. |
Greetings! We’re closing this issue because it has been open a long time and hasn’t been updated in a while and may not be getting the attention it deserves. We encourage you to check if this is still an issue in the latest release and if you find that this is still a problem, please feel free to comment or open a new issue. |
Hey @mullermp, is this still in the feature backlog? |
Yes, but it's not prioritized. I think that there is a workaround however. The Clients support an undocumented
In the future we are trying to do pluggable signers, and in a case like this, it would be an AnonymousSigner object but that is a long term goal. |
The AWS CLI has a
--no-sign-request
option which I've found useful for anonymously downloading S3 objects withpublic-read
ACLs, and I'd like to see a similar feature added to the Ruby SDK.Although it's currently possible to pass an S3 object's
#public_url
toopen
or another Ruby HTTP client, I'd like to be able to leverage the AWS SDK's existing functionality for optimized downloading, file integrity verification and network-error retries, but without requiring credentials to be provided when not necessary.The text was updated successfully, but these errors were encountered: