Rails 3: Set a route as 'get' -


i have route as:

match 'api/v1/:id/:format/:date/(:type)', :controller => "xpto", :action => "api_xpto"

the goal make request outside. however, route not being set get.

how can make get?

change match get:

get 'api/v1/:id/:format/:date/(:type)', :controller => "xpto", :action => "api_xpto" 

or add :via option

match 'api/v1/:id/:format/:date/(:type)', :controller => "xpto", :action => "api_xpto", :via => :get 

Comments

Popular posts from this blog

c++ - error: use of deleted function -

delphi - ESC/P programming! -

c# - how to write client side events functions for the combobox items -