Hacker News new | ask | show | jobs
by JoBrad 1558 days ago
GET doesn’t typically have a body, and many services ignore it even if you include one. An API I once worked on simply truncated the body of all GET requests at the front door, because we knew we’d never use it. Less to worry about.
1 comments

Sorry if I wasn't clear enough, I was talking about query params in the URL, not request body.