Is it possible to upload an image using imgur's api via Rails on Heroku (write limitability?)

I was looking at the following gem:

https://github.com/vanntastic/imgur

How would you handle the actual process of pointing to the actual file to upload with the upload_file method?

link|improve this question

48% accept rate
feedback

2 Answers

You can do that, because you have access to tmp directory. When a file is download on this tmp directory.

link|improve this answer
feedback

Long time no speak.

I literally JUST implemented this: github commit diff. In my case, since imgur returns a string called 'image_hash' as well as a bunch of other things, I just implemented how to rederive all the other stuff and only stored that small string. I hope this helps! I should consider making this into a full-fledged Rails gem.

[Edit - the code is not perfect, it's version 1!]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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