0
curl -d "params" "url"
轉換爲HTTParty.get要求
所以這裏是我的捲髮:
curl -d '[email protected]&password=mypassword' 'http://localhost:8080/locomotive/api/tokens.json'
那麼,什麼是httparty
等同?
curl -d "params" "url"
轉換爲HTTParty.get要求
所以這裏是我的捲髮:
curl -d '[email protected]&password=mypassword' 'http://localhost:8080/locomotive/api/tokens.json'
那麼,什麼是httparty
等同?
答案是:
HTTParty.post("#{my_host}/locomotive/api/tokens.json", body: {:email => "[email protected]", :password => "mypassword"})
有人要重構? –
您可以這樣做:HTTParty.post(「#{my_host} /lotive/api/tokens.json」,正文:{email:「[email protected]」,密碼:「mypassword」}) –