require "rubygems" require "rest-client" res = RestClient.post( 'http://processing.resumeparser.com/requestprocessing.html', { :product_code => 'yourPRODUCTCODE', :document_title => 'Test.doc', :document => File.new("/your/file/path/Test.doc", 'rb'), } ) puts res.code puts res.body