I'm currently working on a simple Rails 4 app where I need to fetch an image from a different source and displays it using image_tag
.
image_tag('http://blah.com/image.gif')
Looks straightforward, but the http://blah.com/image.gif
is secured via simple HTTP Authentication.
Any ideas how to get around with this?
Thanks!