I am working on some RoR3 app and I have to make a HTTP request to some server.
I tried Ruby's Net::HTTP lib and is working locally but not on Heroku. I then tried HTTParty and get it to work locally but it still doesn't work on Heroku. I get
We're sorry, but something went wrong.
When I check the Heroku logs I get
500 Internal server error
showing as the last log.
I made sure the 'httparty' gem is mentioned in the right place in gemfile.
Is there any tutorial on how to make a HTTP request from Heroku PaaS?
Thanks