クエリ文字列認証を使用して Amazon S3 リソースへのリンクを作成するスクリプトを見つけました: https://gist.github.com/1032395
私はレールを使用していないので、ライブラリを手動で含めました。
このスクリプトによって生成された URL を使用してリソースを開こうとするたびに、「無効な日付 (エポックからの秒数である必要があります): 1349364847」が原因で、「アクセスが拒否されました」というエラーが表示されます。
これはどこから来るのでしょうか?
require 'cgi'
require 'base64'
require 'openssl'
def generate_secure_s3_url(s3_key)
#
# s3_key would be a path (including filename) to the file like: "folder/subfolder/filename.jpg"
# but it should NOT contain the bucket name or a leading forward-slash
#
# this was built using these instructions:
# http://docs.amazonwebservices.com/AmazonS3/latest/dev/index.html?S3_QSAuth.html
# http://aws.amazon.com/code/199?_encoding=UTF8&jiveRedirect=1
s3_base_url = '' # i.e. https://mybucket.s3.amazonaws.com
bucket = '' # i.e. mybucket
access_key_id = '' # your Amazon S3 access key ID
secret_access_key = '' # your Amazon S3 secret access key
expiration_date = Time.now.utc.to_i + (2*24*60*60) # 2 days from now in UTC epoch time (i.e. 1308172844)
# this needs to be formatted exactly as shown below and UTF-8 encoded
string_to_sign = "GET\n\n\n#{expiration_date}\n/#{bucket}/#{s3_key}".encode("UTF-8")
# we have to CGI/URL escape the signature since it would fail if it included / or + characters
signature = CGI.escape(Base64.encode64(OpenSSL::HMAC.digest(OpenSSL::Digest::Digest.new('sha1'), secret_access_key, string_to_sign)).gsub("\n",""))
return "#{s3_base_url}/#{s3_key}?AWSAccessKeyId=#{access_key_id}
&Expires=#{expiration_date}
&Signature=#{signature}"
end