I've tried a lot of solutions I found, but with no success. I'm fetching the user object after authenticating-
Login.jsx-
const login = async () => {
const res = await fetch('http://localhost:8080/login', {
method: 'POST',
credentials: 'include',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json;charset=UTF-8'
},
body: JSON.stringify({
username: username,
password: password
})
});
const data = await res.json();
console.log('data: ' + data); // [object][object]
}
routes.js
const handleLoginPost = (req, res, next) => {
passport.authenticate('local', (err, user) => {
if(err) {
console.log(err);
res.status(404).json({err});
return;
}
res.status(200).json(user);
return;
})(req, res, next);
}
router.post('/login', handleLoginPost);
When I use res.text() instead res.json() then it returns a string object-
{"_id":"5f72cf2aa985f40488b2eb2b","username":"sapinder","email":"1@gmail.com","hash":"$2b$10$/7lYBHWP1Ed2VXXSIizyiOk.aujvbi2iRRrFxy6ufxu..S81oRl2u","__v":0}
It's a string because typeof data returns String in this case. I tried JSON.parse(data) but it again returns [object][object].
What's the correct method to extract the user object?