POST request treated as GET in Heroku environment
I have weird case. I have a RoR app, which provides REST API which I'm connecting to from Java application. I'm developing RoR locally, and deploying it on Heroku environment. Regardless how (I tried from Java APP, Mozilla REST client, etc.) I try to send POST HTTP request that should be handled by create action in api controller. On localhost - everything is working as expected. On Heroku production env - the POST request is treated as normal GET. Here are my routes for this resource: api_v1_items GET /api/v1/items(.:format) api/v1/items#index {:format=>:json} POST /api/v1/items(.:format) api