-
rails controller 에 curl post 하는 방법Dev/Ruby On Rails 2019. 10. 7. 20:52반응형
$ curl -d "friut[apple]=1&fruit[orange]=2&fruit[tomato]=3" -X POST http://itips.tistory.com/fruits
위와 같은 구조로 curl 명령을 이용하여 rails 서버에 POST request 를 보내면
Parameters: {"fruit"=>{"apple"=>"1", "orange"=>"2", "tomato"=>"3"}}
이와같이 rails 서버에서 parameters 를 받으며
params[:fruit][:apple], params[:fruit][:orange], params[:fruit][:tomato]
이러한 형식으로 해당 parameter 들을 읽어 올 수 있다.
반응형'Dev > Ruby On Rails' 카테고리의 다른 글
Missing `secret_key_base` for 'production' environment (0) 2020.02.22 Could not load the 'listen' gem. Add `gem 'listen'` to the development group of your Gemfile (LoadError) (0) 2020.02.11 Webpacker configuration file not found (0) 2020.01.30 Address already in use - bind(2) (Errno::EADDRINUSE) (0) 2019.10.23 Ruby On Rails 리눅스 상에 처음 설치하기 (0) 2019.10.05