我需要转换
curl -d "params" "url"
到HTTParty.get请求
所以这是我的卷曲:
curl -d 'email=myadmin@mycompany.com.au&password=mypassword' 'http://localhost:8080/locomotive/api/tokens.json'
那么httparty
中的等价物是什么?
答案 0 :(得分:0)
答案是:
HTTParty.post("#{my_host}/locomotive/api/tokens.json", body: {:email => "myadmin@mycompany.com.au", :password => "mypassword"})