I'm using to make my mobile app and want to connect to my rails backend on Heroku. It uses ssl because security is important. I want to make a post request to the server, and I know the server works because I've made calls using rest-client in ruby.
After I couldn't get asynchttp.post to work I tried to use rest_client. I put rest client in my build.yml and I wrote require 'rest_client' on the controller page. It said it couldn't find 'rest_client'.
My question is twofold. First, can I use rest_client with rhodes? Second, if I can't, then how can I make a post call from rhodes that doesn't ignore ssl.
Here's the specifics:
url: https://deep-journey-9811.herokuapp.com/checkins/manlogin.json',
parameters:
:companyid => 'company', :email => 'email', :password =>
'12345678', :content_type => :json, :accept => :json
successful response:
=> "{\"manager\":{\"email\":\"email\",\"first_name\":\"first \",
\"last_name\":\"last\",\"companyid\":\"company\",\"success\":true}}"
Thanks for the help