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
The code:
require "s3" service = S3::Service.new(:access_key_id => "foo", :secret_access_key => "bar") bucket = service.buckets.find("my-bucket") # bucket exists object = bucket.objects.find("my-file.html") # object exists puts object.request_acl
Results in:
s3.rb:9:in `<main>': undefined method `request_acl' for #<S3::Object:/my-bucket/my-file.html> (NoMethodError)
How do I list an object's permissions? Cheers.
The text was updated successfully, but these errors were encountered:
It may not be possible atm. Please create a pull request for that :-).
Sorry, something went wrong.
This should be fixed, no?
Unsure, isn't there any other way of checking ACL?
No branches or pull requests
The code:
Results in:
s3.rb:9:in `<main>': undefined method `request_acl' for #<S3::Object:/my-bucket/my-file.html> (NoMethodError)
How do I list an object's permissions? Cheers.
The text was updated successfully, but these errors were encountered: