Hello all,
I would like to know your thoughts on using HTTP POST as a GET request.
The reason would be to send data in the body because it's too much to fit into anywhere else.
The data would not change anything server side, but there is so much data that that is used to affect what is returned.
Personally I think this is a code smell.
Is it really that smelly?
How would you approach a situation where you need to send large amounts of data in a GET request?
I would assume there is some design flaw, but not sure how else you would accomplished that.
Thanks,
AA