[Answered ]-POST Large amount JSON data via django rest api`

1👍

your issue is not with django (isps and webservers) usually limit post requests sizes as they can be used for DDOS.

i don’t know if you’re using apache or nginx but this might directive might help : client_max_body_size

Also have you checked if the response timed out or never reached your python code ?

0👍

you could consider compressing json then posting it to server, and decompressing it in server side with some compression algorithm such as zlib-react, zlib-python

👤Bader

Leave a comment