Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do you set the headers for downloads in ruby/rails?

In php I'd set the header for an mp3 download like this:

    header("Content-Transfer-Encoding: binary");
    header("Content-type: audio/mp3");
    header("Content-Disposition: attachment; filename=\"$songname.mp3\"");
    header("Content-Length: " . $size);

    @readfile("http://example.com/12345.mp3");

Seems like there should be an easy solution.

I did find this:

response.headers['Content-type'] = 'Content-type: audio/mp3'

But I'm not sure how/where the readfile would come into play and other headers.

Thanks!

share|improve this question

1 Answer

up vote 3 down vote accepted

Found the answer. send_file should be used in the controller.

  def download
       send_file "/path/to/file.mp3", :type=>"audio/mp3", :filename => "filenamehere.mp3"
  end

There are some other considerations with rails process limitations:

See here: http://www.therailsway.com/2009/2/22/file-downloads-done-right

Also, send_file http://apidock.com/rails/ActionController/Streaming/send_file

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.