I am trying to send data to my Google Cloud server. (login form). I have an error,
[Error: Request failed with status code 404]
I also tried fetch method, but I got a network failed error there.
This is my code:
handleLoginUser(){
const data = new FormData();
data.append('email', '[email protected]');
data.append('password', '1234567890');
return axios.post('http://*serverip*/users/login',
data,
{
headers: {
'Content-Type': 'application/json',
}
},
)
.then(function (response) {
console.log(response);
})
.catch(function (response) {
console.log(response);
});
}
Thanks for your help.