I am trying to make a POST request to /api/kpi?data=some+stuff:
curl -i http://127.0.0.1:9010/api/create_kpi -F data="some stuff"
but I'm getting a 404.
My routes are:
# config/routes.rb
namespace :api do
resource :kpi, :except => [:edit, :destroy]
end
Which should hit my controller
# app/controllers/api/kpi_controller.rb
class Api::KpiController < ApplicationController
def create
temp = Kpi.new(params[:data])
end
end
So I am guessing the paths are not correct. Right? I am having a hard time understanding whether my route is incorrect, or the controller, or the call.
rake routeswill show you how your routes go. Verify it leads where you expect. – Jonathan Allard May 31 '12 at 13:57bundle install+ this here (in case) might help – Jonathan Allard May 31 '12 at 14:12Kpi:Classpoints to your model. It looks like you included a methodfieldin there. Can you verify that syntax? Fields are usually contained on the database/schema side. – Jonathan Allard May 31 '12 at 14:24