1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/session/cookie-auth
2022-02-06 08:13:24 +00:00
..
src Actix Web 2022-02-06 08:13:24 +00:00
Cargo.toml Update session/cookie-auth to v4 (#492) 2022-02-02 15:21:09 +00:00
README.md fix broken links (#441) 2021-10-06 22:28:53 +01:00

cookie-auth

cd session/cookie-auth
cargo run
# Starting http server: 127.0.0.1:8080

Testing with cookie auth with curl.

Login:

    curl -v -b "auth-example=user1" -X POST  http://localhost:8080/login
    < HTTP/1.1 302 Found
    < set-cookie: auth-example=GRm2Vku0UpFbJ3CNTKbndzIYHVGi8wc8eoXm/Axtf2BO; HttpOnly; Path=/
    < location: /

Uses a POST request with a Useridentity user1. A cookie is set and a redirect to home / follows.

Get:

Now with the cookie auth-example sent in a GET request, the user1 is recognized.

    curl -v -b "auth-example=GRm2Vku0UpFbJ3CNTKbndzIYHVGi8wc8eoXm/Axtf2BO" http://localhost:8080/
    * Connected to localhost (127.0.0.1) port 8080 (#0)
    > GET / HTTP/1.1
    > Host: localhost:8080
    > Cookie: auth-example=GRm2Vku0UpFbJ3CNTKbndzIYHVGi8wc8eoXm/Axtf2BO
    > 
    < HTTP/1.1 200 OK
    < 
    Hello user1