I am using DRF for mobile application. now I want to set the maximum data limit that client side can sent to POST api. How can i set that limit in DRF (django rest framework)?
I found this post but i need in more details.
Update:
also referred this . Added DATA_UPLOAD_MAX_MEMORY_SIZE = 3*1024*1024
in settings.py file and hit POST api with 5.6MB payload data, still its accepting that data.