I am sending a POST call to the server. the size of the payload is 114757153(114Mb)
Post call request:
response = requests.post(url, data=json.dumps(payload), headers=headers)
I understood that the data variable was not able to read the complete 114mb, so it is throwing unsuccessful msg.
What is the best way to send a 114mb payload as a request to the server?