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
The user is supposed to identify himself via a POST request with a JSON body containing the credentials. As return a httpOnly cookie is to be used, which from then on should be sent back by the client to confirm the session.
This is to be done with regard to the fact that httpOnly cookies cannot be accessed via JavaScript.
This type of cookie is automatically sent with every request, but is not readable in JavaScript, which makes it safe from theft by other JavaScript.
The text was updated successfully, but these errors were encountered:
The user is supposed to identify himself via a POST request with a JSON body containing the credentials. As return a httpOnly cookie is to be used, which from then on should be sent back by the client to confirm the session.
This is to be done with regard to the fact that httpOnly cookies cannot be accessed via JavaScript.
This type of cookie is automatically sent with every request, but is not readable in JavaScript, which makes it safe from theft by other JavaScript.
The text was updated successfully, but these errors were encountered: