You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/weblog/README.md
+17
Original file line number
Diff line number
Diff line change
@@ -678,3 +678,20 @@ Examples:
678
678
### \[GET\] /set_cookie
679
679
680
680
This endpoint get a `name` and a `value` form the query string, and adds a header `Set-Cookie` with `{name}={value}` as header value in the HTTP response
681
+
682
+
### \[GET\] /session/new
683
+
684
+
This endpoint is the initial endpoint used to test session fingerprints, consequently it must initialize a new session and the web client should be able to deal with the persistence mechanism (e.g. cookies).
685
+
686
+
Examples:
687
+
-`GET`: `/session/new`
688
+
689
+
### \[GET\] /session/user
690
+
691
+
Once a session has been established, a new call to `/session/user` must be made in order to generate a session fingerprint with the session id provided by the web client (e.g. cookie) and the user id provided as a parameter.
692
+
693
+
Query parameters required in the `GET` method:
694
+
-`sdk_user`: user id used in the WAF login event triggered during the execution of the request.
0 commit comments