I have a project that upload files attachments with paperclip and s3. How can I have users download these files.
Model
class Assets
has_attached_file :file
end
Routes
resources :assets do
member do
get 'download'
end
end
Controller
def download
data = open(@asset.file.url)
send_data data.read, :type => data.content_type, :x_sendfile => true, :url_based_filename => true
end
Error:
OpenURI::HTTPError in AssetsController#download
403 Forbidden
I found solution to this problem here
Answer: