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
Route: POST /users/:username/login
Description: Logs a user into the system.
Body: password
This route does not work properly. If you have an account, and curl this url: curl -X POST https://cloud.snap.berkeley.edu/users/someuser/login -H "Content-Type: application/json" -d '{"password": "SomePassword"}
should successfully log in, but it fails when the password string is concatenated with the salt. The salt is NIL, so concatenation fails.
The text was updated successfully, but these errors were encountered:
Route: POST /users/:username/login
Description: Logs a user into the system.
Body: password
This route does not work properly. If you have an account, and curl this url:
curl -X POST https://cloud.snap.berkeley.edu/users/someuser/login -H "Content-Type: application/json" -d '{"password": "SomePassword"}
should successfully log in, but it fails when the password string is concatenated with the salt. The salt is NIL, so concatenation fails.
The text was updated successfully, but these errors were encountered: