To find the incoming content type, docs say:
request.headers["Content-Type"] # => "text/plain"
But I found by trial-and-error, that doesn't work, but this does:
request.headers["CONTENT_TYPE"]=='application/json'
So what's the most robust+portable way to do it?
You don't need to parse the content_type string, Rails has already done this for you. Just check:
Another way of writing it:
request.format == 'application/json'
For me the best way to check if incoming request is a json was:
I would usually go for
request.format
andrequest.content_type
for reading these header fields.EDIT: found a bit more on this that might help: https://stackoverflow.com/a/1595453/624590
No need to call #symbol since equals is overloaded: