“Axios Get REQ с базовой аудиторией и ошибкой” Ответ

Axios Get REQ с базовой аудиторией

const res = await axios.get('https://httpbin.org/basic-auth/foo/bar', {
  // Axios looks for the `auth` option, and, if it is set, formats a
  // basic auth header for you automatically.
  auth: {
    username: 'foo',
    password: 'bar'
  }
});
res.status; // 200
CL

Axios Get REQ с базовой аудиторией и ошибкой

const err = await axios.
  get('https://httpbin.org/basic-auth/foo/bar', {
    auth: {
      username: 'foo',
      password: 'baz' // Bad password
    }
  }).
  catch(err => err);
err.message; // "Request failed with status code 401"
err.response.status; // 401 "Unauthorized"
CL

Ответы похожие на “Axios Get REQ с базовой аудиторией и ошибкой”

Вопросы похожие на “Axios Get REQ с базовой аудиторией и ошибкой”

Больше похожих ответов на “Axios Get REQ с базовой аудиторией и ошибкой” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования