In back-end i set HttpOnly cookie:
res.cookie('tk', token , {
maxAge: 365 * 24 * 60 * 60 * 100,
httpOnly: true,
secure: true,
})
Then check HttpOnly cookie send by axios front-end in back-end:
console.log(req.cookies) // <-- It only work on desktop Chrome but didn't work on mobile Chrome
Then in mobile Chrome it only show cookies without HttpOnly. How can i set HttpOnly in mobile Chrome? Or send HttpOnly from mobile Chrome?