Когда я пытаюсь отправить запрос axio post из React native в свой Spring Boot API, мои данные не отправляются?
Вот мой код в функции apiReq
:
const apiReq = () => {
return (axios.post('http://{IP address}:8082/api/login', {
headers: {
"Accept": 'application/json',
"Content-Type": "application/json"
},
body: JSON.stringify({
"password": "#####",
"username": "abcd.gmail.com"
})
})
.then(response => {
console.log(response.data.responseMessage.errorCode);
})
.then(result => console.log(result))
.catch(error => console.log('error', error))
)
}