Sentry Answers>React>

AxiosError: Request failed with status code 400 (in React JS)

AxiosError: Request failed with status code 400 (in React JS)

Matthew C.

The ProblemJump To Solution

When working with Axios in a React app, you may encounter the following error:

Click to Copy
Axios.js:70 Uncaught (in promise) AxiosError { message: 'Request failed with status code 400', name: 'AxiosError', code: 'ERR_BAD_REQUEST', ... }

The 400 Bad Request response status code indicates that the server can’t process an HTTP request due to an error in the Axios request. There are various potential causes for a bad request error, including:

  • A typo in the request URL
  • An invalid request: incorrect format, missing parameters, or headers
  • The file upload size is too large when the server has a file size upload limit
  • A corrupted browser cache or invalid cookies
  • Browser extensions
  • DNS lookup cache

These errors are not React-specific and can indicate an issue with your server. For example, if a form in your React app has a function to handle form submission of a multipart request like the function below:

Click to Copy
async function handleSubmit(event: React.FormEvent<HTMLFormElement>) { event.preventDefault(); try { const form = new FormData(); form.append("my_file", fileInputState.files[0]); const data = axios.post("http://localhost:3000/api/data", form); console.log(data); } catch (error) { console.log(error); } }

The API endpoint, “http://localhost:3000/api/data”, should be set up to handle multipart form data or you’ll get a bad request error.

Multipart requests are often used for file uploads and transferring data of several different types in a single request. If the backend API uses Node.js, you could use middleware to handle multipart/form-data like Multer.

The Solution

Here are some methods that you can use to find and fix common causes of a bad request error.

Check the Structure of the Axios Request

Make sure that your Axios request matches the request expected by the server. Check that you’re using the correct Axios syntax and that your request includes all the required parameters and headers. You should also make sure that the data you are sending in the request is valid and properly formatted.

Use the network tab in your browser dev tools to check the structure of the Axios request sent to the server. You can also use an API development platform such as Insomnia or Postman to test your Axios requests.

Check the Server API Logs

You can check the API server logs to get more information about the error if you have access to the server. If it’s a third-party API, check the server’s API documentation to see if there are any requirements or restrictions you need to be aware of.

If you can change the backend code, it may be useful to adjust the API to return a more useful error message or log errors in the server, like indicating if there’s a missing property in a POST request body.

Check the Data Type of Request Data

If your Axios request is sending data, make sure that the data format matches the data format expected by the server. For example, if your server expects URL-encoded data you need to send data in the application/x-www-form-urlencoded format. Axios serializes JavaScript objects to JSON by default. To send data in the application/x-www-form-urlencoded format you can set the content-type header to application/x-www-form-urlencoded. Axios will automatically serialize the data object to a URL-encoded format. Alternatively, use one of the other approaches outlined in the Axios docs section on encoding URL bodies.

Check If the File Upload Size is Larger Than the Server File Size Upload Limit

If you are sending a large file in your request, check that the size of the file does not exceed the server file size limit. The specific error would be a 413 Request Entity Too Large error. You can test if this is the cause of the error by uploading a small file. If this is the issue, consider compressing files to reduce their size or using a file format that uses less space, such as uploading a video instead of a GIF, which you can do client side using a library such as ffmeg.wasm.

Clear the Browser Cache and Cookies

Try clearing your browser’s cache and cookies. If you use Chrome, you can follow this guide. Browsers store information from websites in their cache and cookies. You may get an HTTP request 400 error if your browser cache or cookies data are corrupted. You may also get the 400 error if the cookies for handling login authentication for a website are expired.

Disable Browser Extensions

If you have browser extensions, try disabling them. Browser extensions may affect website cookies.

Clear Your Operating System’s DNS Lookup Cache

Try clearing your operating system’s domain name system (DNS) cache. Your operating system stores web server information, which includes DNS lookup data, in a local cache. This data decreases page load times by reducing DNS lookup times. A DNS lookup is the process of translating human-readable domain names into computer-readable IP addresses. Outdated or corrupted cached data can cause bad request 400 errors.

To clear your DNS lookup cache, follow this guide.

  • Sentry BlogHow to identify fetch waterfalls in React
  • Syntax.fmReact Server Components
  • Syntax.fmWhy the jQuery Creator Uses React and Typescript
  • Sentry BlogReact Native Debugging and Error Tracking During App Development
  • Syntax.fmDiscussion on building native iOS and Android apps with React Native
  • SentryReact Error & Performance Monitoring
  • Sentry BlogFixing memoization-breaking re-renders in React
  • Syntax.fm logo
    Listen to the Syntax Podcast

    Tasty treats for web developers brought to you by Sentry. Get tips and tricks from Wes Bos and Scott Tolinski.

    SEE EPISODES

Considered “not bad” by 4 million developers and more than 100,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.