I have a rails app that i am trying to do a get request with co-ordinates in... I have a route in my routes.rb like this:
map.connect 'feeds/get/:location', :controller => "feeds", :action => "get"
I can send a string consisting of alphanumeric characters fine, but I need to send co-ordinates in a string in the uri as a get request: 51.896834,0.878906.
so, i escaped the string like so, and append it to my uri.
http://thisisnottheurl.net/feeds/get/51%2E896834%2C0%2E878906.xml
however it looks like rails automatically unescapes the string before the controller and gives me this routing error in the log:
ActionController::RoutingError (No route matches "/feeds/get/51.896834,0.878906.xml" with {:method=>:get}):
How do i stop rails escaping this string (with routes?) so that it can be read in the controller? I looked at using the match fuction in routes.rb with regex, but that is rails 3 only...
thanks!
params[:longitude]). – Marc Talbot Feb 28 '12 at 14:13map.connect 'feeds/get/:location', :controller => "feeds", :action => "get"– willejs Feb 28 '12 at 14:31http://thisisnottheurl.net/feeds/get/51%2E896834%2C0%2E878906.xml– willejs Feb 28 '12 at 14:43get/51?lat=12.00023&long=52.02143– Marc Talbot Feb 28 '12 at 15:05