Skip to content

Commit 504adb8

Browse files
authored
Update overview.md (#1741)
1 parent ec7eb21 commit 504adb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/sessions/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: "Sessions"
44

55
# Sessions
66

7-
Sessions are a way to persist state in the server. It is especially useful for managing the authentication state, such as the client's identity. We can assign each session with a unique ID and store it on the server to use it as a token. The client can then associate subsequent requests with a session, and by extension the user, by sending the its ID.
7+
Sessions are a way to persist state in the server. It is especially useful for managing the authentication state, such as the client's identity. We can assign each session with a unique ID and store it on the server to use it as a token. The client can then associate subsequent requests with a session, and by extension, with the user, by sending its ID.
88

99
Session IDs can either be stored using cookies or local storage in browsers. We recommend using cookies since it provides some protection against XSS and the easiest to deal with overall.
1010

0 commit comments

Comments
 (0)