I'm attempting to post a json object to my server, however for whatever reason it doesn't show up in production.
In development params.inspect yields
({"format"=>"json", "body"=>"Wtf", "api_key"=>"xxx", "action"=>"comment", "item_id"=>"496", "controller"=>"api"})
And in production I get
({"format"=>"json", "action"=>"comment", "controller"=>"api"})
The only difference in the two environments is that I run passenger/nginx in production. Any thoughts?