instance method
url_for_direct_upload
Ruby on Rails 6.0.6
Since v5.2.8.1Signature
url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
Returns a signed, temporary URL that a direct upload file can be PUT to on the key. The URL will be valid for the amount of seconds specified in expires_in. You must also provide the content_type, content_length, and checksum of the file that will be uploaded. All these attributes will be validated by the service upon upload.
Parameters
-
keyreq -
expires_inkeyreq -
content_typekeyreq -
content_lengthkeyreq -
checksumkeyreq
Source
# File activestorage/lib/active_storage/service.rb, line 116
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
raise NotImplementedError
end
Defined in activestorage/lib/active_storage/service.rb line 116
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::Service