Я ввожу логин. Я могу отправить почтовый запрос на токен конечной точки в Почтальоне, но не в Axios.
Функция Axios:
axios({
method: 'post',
url: 'http://localhost:20449/token',
headers: {
'Content-type': 'application/x-www-form-urlencoded'
},
data: {
'grant_type': 'password',
'username': user.username,
'password': user.password
}
}).then(resp => {
console.log(resp)
commit(AUTH_SUCCESS, resp)
dispatch(USER_REQUEST)
resolve(resp)
})
Я получаю ошибку
"unsupported_grant_type"