E
egarcia
Guest
Note: First curl command should use "-c" to save the cookies in particular OEMSESSION_ID and use POST to perform FORM-based authentication: curl -v -c /tmp/cookiefile -X POST -d 'username=admin&password=4admin' localhost:9090/login.jsp The 2nd curl command uses -b to read the cookies. curl -X PUT -b /tmp/cookiefile -d '{"reset":"true"}' localhost:9090/.../reset
Continue reading...
Continue reading...