79753330

Date: 2025-09-02 10:05:39
Score: 0.5
Natty:
Report link

Try Adding your domain in it. Like this.

res.set_cookie(
    key="SOME_KEY",
    value=cookie_value,
    httponly=True,
    samesite="none",
    path="/",
    max_age=1000,
    expires=COOKIE_EXPIRY_DATE_TIME,
    secure=True,
    domain="example.com", # <-- Add this line
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Milap Shah