Skip to main content

Posts

Showing posts from July, 2015

Usage of RestClient in Rails

Steps For Http post using rest client Calling the Api calls in ruby on rails 1)gem install rest-client 2)We need to keep in whereever we want to use in rails controller Example: require 'rest-client' class UsersController < ApplicationController response = RestClient.post 'http://chinnaror.blogspot.in/test', :name => "koti",:email => "kotesh.raogaru@gmail.com" data = JSON.parse response.body p "data here......." p data.inspect p 999999999999999999999 end In Chrome we can use the " Postman"   browser Software Link: https://chrome.google.com/webstore/detail/postman/fhbjgbiflinjbdggehcddcbncdddomop?hl=en In Mozilla We can use the " Restclient"   browser Software Link: https://addons.mozilla.org/en-US/firefox/addon/restclient/