Answers for "error: request failed with status code 400"

3

what is error code 400

The HyperText Transfer Protocol (HTTP) 400 Bad Request response status code indicates that the server cannot or will not process the request due to something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
Posted by: Guest on February-22-2021
-2

error: request failed with status code 400

You should add a catch to the get call:

import axios from 'axios';
import config from './config';

axios.get('${config.serverUrl/api/contests')
  .then(resp=>{
    console.log(resp.data);
  })  
  .catch(error=>{

  });
Posted by: Guest on March-06-2021

Browse Popular Code Answers by Language