Luis Acero
Luis Acero

Reputation: 1100

In a post method, what is the limit size of a json in the request body?

I know that there is a limit to the size of a json when sending in the request body but I did not find anything concrete.

Upvotes: 0

Views: 5931

Answers (1)

Ilya Oblomo
Ilya Oblomo

Reputation: 104

JSON is similar to other data formats like XML - if you need to transmit more data, you just send more data. There's no inherent size limitation to the overall JSON request itself. Any limitation would be set by the server parsing the JSON request. (For instance, ASP.NET has the "MaxJsonLength" property of the serializer.)

Upvotes: 5

Related Questions