احاول تسجيل الدخول من خلال react وربطة مع laravel
جربت تسجيل الدخول في POSTMAN كل شي اوكي
لاكن REACT يطلع لي
وهذا الكود
event.preventDefault()
const x = {
email: email,
password: password
}
let token = "10|IY7qGJkcqhsgpCLdUunedtjaRmt1VYP8TPcUAvM3"
console.log(x)
axios.post('http://127.0.0.1:8000/api/login', x,
{
headers: {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
"Authorization": `Bearer{ token }`
},
}
)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
}
event.preventDefault()
const x = {
email: email,
password: password
}
let token = "10|IY7qGJkcqhsgpCLdUunedtjaRmt1VYP8TPcUAvM3"
console.log(x)
axios.post('http://127.0.0.1:8000/api/login', x,
{
headers: {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
"Authorization": `Bearer{ token }`
},
}
)
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
}