Is it possible to send a json object in a res.redirect in express?

Any way I can pass a user object in the res.redirect?

 res.redirect("/");

I added authentication later in my code and after successful signin, I am now redirecting to the home route.
What do I do?