POST form parameters with HTTParty
Do You want to POST form parameters with HTTParty? use the :body key in the options hash:
options = { :body => { :name => “Sam” }, :query => { :url_api_key => 123456 } }
Foo.class.post(“/your/url/here”, options)
Do You want to POST form parameters with HTTParty? use the :body key in the options hash:
options = { :body => { :name => “Sam” }, :query => { :url_api_key => 123456 } }
Foo.class.post(“/your/url/here”, options)