我正在尝试将json对象发布到我的服务器,但无论出于何种原因它都不会出现在生产中。
在开发中,params.inspect yield
({"format"=>"json", "body"=>"Wtf", "api_key"=>"xxx", "action"=>"comment", "item_id"=>"496", "controller"=>"api"})
在制作中我得到了
({"format"=>"json", "action"=>"comment", "controller"=>"api"})
两种环境的唯一区别是我在生产中运行passenger / nginx。有什么想法吗?
答案 0 :(得分:0)
看起来你看起来像是在发送什么,实际发送的是不同的东西。您可以尝试使用Wireshark来验证发送到服务器的确切内容。