query params?
Use case:
Let's say we have to send user IDs as query parameters in a GET request,
But when we have more user IDs, we'll reach the limit.
And the idea of passing it as req body in GET request is bad.
So, how could I do this?
Thought of compressing, but mostly it will be in weird format to send in a url, or the data might get corrupted.
Might as well put them in the body as a either XML or JSON format
I thought to do the same, but it's bad practice right.
How is it bad practice? Its completely normal
Ohh. We have client as an app. It's defined like that on many places. So
What is the theorical limit?
So a few things to keep in mind is, the bigger the request, the longer it will process. So unless you can chop up the requests in smaller batches, it will respond faster
Обсуждают сегодня