You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 23, 2018. It is now read-only.
I am using uber-s3 to fetch all the URLs that I have cahced in s3 Bucket. I also want the timestamps of the files at which they were cached, but I am not able to find any way to do this. Here is my code
require 'uber-s3'
s3=UberS3.new({
:access_key => Access_Key,
:secret_access_key => Secret_Access_key,
:bucket => Bucket_Name,
})
s3.objects('/').each do |obj|
puts obj.key
puts obj.last_modified
end
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am using uber-s3 to fetch all the URLs that I have cahced in s3 Bucket. I also want the timestamps of the files at which they were cached, but I am not able to find any way to do this. Here is my code
require 'uber-s3'
s3=UberS3.new({
:access_key => Access_Key,
:secret_access_key => Secret_Access_key,
:bucket => Bucket_Name,
})
s3.objects('/').each do |obj|
puts obj.key
puts obj.last_modified
end
The text was updated successfully, but these errors were encountered: