The 413 or 'Request entity too large' status code means the server is refusing to process a request because the request entity is larger than the server is willing or able to process.
Questions tagged [http-status-code-413]
142 questions
5
votes
1 answer
What is maximum file size to upload via Dropbox API v2?
I am trying to upload files to Dropbox using API v2 /upload endpoint. Sometimes I get a 413 error response from the Dropbox server (Request entity too large).
Unfortunately, maximum file size is not described in the documentation, maybe someone know…

edtech
- 1,734
- 20
- 20
4
votes
0 answers
error 413 request entity too large docker node
I'm getting an 413 request entity too large when I make a request from my nodejs application inside Docker to an outside REST API.
When I make this request outside Docker, it goes normally.
I was using node 10.16.0 and updated to 12.16.1 without…

Alan Marcell
- 41
- 5
4
votes
0 answers
Request failed with status code 413, request entity too large
I have a node.js server combined with a react.js frontend. I've a form that requires users to upload files to a AWS S3 bucket. I'm using Multer.js to handle the file upload. I've set the default upload size to a max of 10mb. While there is…

Abir Rahman
- 41
- 1
- 4
4
votes
0 answers
Mailgun Error: 413 Request Entity Too Large
I am making this request with the Mailgun API:
var filepath = path.join(__dirname, "/output/" + job.jobId + ".zip");
var data = {
from: 'Name ',
to: email,
subject: 'Test',
text: 'Test',
attachment:…

carte
- 1,033
- 2
- 13
- 29
3
votes
2 answers
CORS ERROR in React js axios when its working in postman
In my Mern Stack Project I am facing a problem when I am creating a Lesson from postman its created successfully but when I am trying from my browser its given me 500 error in network tab. But in console i got CORS error and also 500 error. I am…

md abrar
- 27
- 1
- 3
3
votes
0 answers
When I use the delete protocol of HTTP to pass parameters in the body (the parameters are very small), nginx returns 413, why?
Like this :
[root@localhost orz]#
[root@localhost orz]#
[root@localhost orz]# curl -X 'DELETE' 'http://192.168.6.166:7777/api/services/group/' -H 'accept: application/json' -H 'Authorization: Bearer…

sx Luo
- 59
- 1
- 3
3
votes
0 answers
Elasticbeanstalk - NGINX - 413 Request entity too large
I know this might be considered a duplicate of: Customizing Nginx Configuration in AWS Elastic Beanstalk (and other questions), but I was unable to make my code work with any of the proposed solutions.
This is how my config.yml file looks like (xxx…

Jan Runo
- 45
- 6
3
votes
0 answers
MeteorJS send files
I need to send an audio to the meteor server, but I keep getting a 413 (Request Entity Too Large)
I'm using a FileReader to read a file as a binary string and then send it to the server
const reader = new FileReader();
…

Igor Shulgan
- 81
- 6
3
votes
1 answer
AngularJS getting status code 0 for 413 (Request Entity Too Large) in Loopback API
1. Some info
I have an AngularJS 1.3.15 client-side app making requests to my loopback api.
In the app, I intercept request results (with $httpProvider.interceptors) and interpret the status codes to display meaningful messages when the user does…

jcsmesquita
- 166
- 2
- 9
3
votes
1 answer
Google App Engine 413 error (Request Entity Too Large)
I've implemented an app engine server in Python for processing html documents sent to it. It's all well and good when I run it locally, but when running off the App engine, I get the following error:
"413. That’s an error. Your client issued a…

sapanda
- 792
- 1
- 9
- 17
2
votes
1 answer
Docker compose not letting access to services
I have a microservice based project designed using Springboot, Maven, and the Netflix eureka server. I want to deploy them using Docker Compose. However, when I deployed them, all the services got registered on the eureka server, but only two…

Rashmika Silva
- 113
- 6
2
votes
2 answers
Quarkus - 413 Request Entity Too Large
I am developing a Quarkus application and using RESTEasy Reactive. One of the endpoints receives a multipart/form-data mime type object but when I try to use it sometimes the "413 - Request Entity too Large" error occurs.

Hugo Vinhal
- 305
- 1
- 15
2
votes
2 answers
Change file upload limits for an ASP.NET Core 3.1 App using Azure App Service
I have a solution built using ASP.NET Core 3.1. The pipeline is built to publish to an App Service in Azure.
The trouble is, we are unable to upload a file size larger than 28MB. We get a 413 error - file too large. This seems to be an IIS issue,…

jimd12
- 25
- 1
- 6
2
votes
1 answer
Azure App Service Returning 413 Payload Too Large on Long POST Request
Locally this works, but when hitting our Azure App Service API with a POST request which has a long (seemingly anything over somewhere around 100,000 characters) request body, we get a "413 Payload Too Large" response. This is a fairly long HTML…

Chris
- 473
- 5
- 18
2
votes
1 answer
413 Error on PHP Video Upload on Windows Server with IIS
The video upload works fine with a 23 MB file, for example, but when I try a 38 MB file (or anything larger than that), after about 10 or 15 seconds, it fails with a 413 error.
I've modified my php.ini with the following settings:
memory_limit =…

Vincent
- 1,741
- 23
- 35