Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a REST API, trying to upload a picture of user with:

  • grape micro-framework
  • paperclip gem but it's not working, showing this error
  • rails version is 3.2.8

No handler found for #<Hashie::Mash filename="user.png" head="Content-Disposition: form-data; name=\"picture\"; filename=\"user.png\"\r\nContent-Type: image/png\r\n" name="picture" tempfile=#<File:/var/folders/7g/b_rgx2c909vf8dpk2v00r7r80000gn/T/RackMultipart20121228-52105-43ered> type="image/png">

I tried testing paperclip with a controller and it worked but when I try to upload via grape api its not working my post header is multipart/form-data

My code for the upload is this

 user = User.find(20) 
 user.picture = params[:picture] 
 user.save! 

So if it is not possible to upload files via grape is there any alternative way to upload files via REST api?

share|improve this question

1 Answer

You can pass the File object you got in params[:picture][:tempfile] as Paperclip got an adapter for File objects, like this

user.picture = params[:picture][:tempfile]
user.picture_file_name = params[:picture][:filename] # Preserve the original file name
share|improve this answer
This didn't work: stackoverflow.com/questions/15354699/… – Chloe Mar 12 at 6:26

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.